export declare const FILE_ITEM_STATES: readonly ["uploaded", "uploading", "success", "error"]; export type FileItemState = (typeof FILE_ITEM_STATES)[number]; export interface FileItemRemoveDetail { /** Filename of the row that fired the remove. */ filename: string; }