import { default as React } from 'react'; export declare const FileInput: React.ForwardRefExoticComponent, "type" | "value" | "onChange" | "multiple"> & { /** * Fires with the picked `File` when the user selects one, or `null` when * the selection is cleared. Note: `` is uncontrolled at * the DOM level — the parent owns the `File` reference and can clear it * by manipulating the underlying input via the forwarded ref (or by * re-mounting via a changed `key`). */ onChange?: (file: File | null) => void; } & React.RefAttributes>;