export interface UploadedFile { url: string; path: string; filetype: string; name: string; original: string; width?: number; height?: number; type?: string; } export interface UploadedPreview { file: File; preview: any; }