import { FileObject } from "../../../objects/file-object"; export type TGetFilesAndFoldersResponse = { count: number; size: number; size_pretty: string; files: FileObject[]; folders: string[]; };