/// interface Props { name: string; multiple?: boolean; } declare type InputProps = JSX.IntrinsicElements['input'] & Props; export declare function FileInput({ name, multiple }: InputProps): JSX.Element; export {};