import Api from "../Api"; import { TFile } from "../services/file-storage/types/file.type"; export declare class FileObject { readonly id: string; readonly name: string; readonly folder: string; readonly bucket: string; readonly extension: string; readonly size: number; readonly mimetype: string; readonly shared_link: string; readonly created_at: Date; readonly plain: TFile; static api: Api; constructor(file: TFile); download(): Promise; }