import type { ValuesOf } from '../../Types/ValuesOf'; /** * `FileUploadView` - The `FileUploadView` object is used to describe the different types of file upload views. */ export declare const FileUploadView: { /** * `table` - Table view. */ readonly Table: "table"; /** * `list` - List view. */ readonly List: "list"; /** * `card` - Card view. */ readonly Card: "card"; /** * `chip` - Chip view. */ readonly Chip: "chip"; }; /** * @public */ export type FileUploadView = ValuesOf; //# sourceMappingURL=FileUploadView.d.ts.map