import { CSSProperties } from "react"; export interface SimpleFileInputProps { name?: string; values?: any; onUpdate?: (name: string, value: any) => void; visible?: (values: any) => boolean; readOnly?: (values: any) => boolean; className?: string; style?: CSSProperties; isTextFile?: boolean; }