import { FileObject } from './interfaces'; export declare class UploadFile { private $file; /** * A unique UUID referencing this file in the Flatfile system */ id: string; /** * The original filename on the user's system */ filename: string; /** * The size of the file in bytes */ filesize: number; /** * The type of file */ filetype: string; /** * A securely signed url giving you temporary access to download the file */ url: string; constructor(file: FileObject); }