export type ProjectFilesTree = {
  name: string;
  path: string;
  type?: string;
  size?: string;
  children?: ProjectFilesTree[];
};
