export type FileStatus = 'initial' | 'loading' | 'success' | 'error'; export type FilePickerFile = { value: File; status: FileStatus; };