import { FileState } from '../../elements/FileList/types'; export interface FileListItem { id: string; title: string; state?: FileState; name?: string; file?: File; optional?: boolean; } export type SelectedFile = Required; export interface SelectItem { text: string; value: string; }