import * as React from 'react'; import { Button } from '../button/Button'; export type FileInputProps = React.ComponentProps & { onFileSelect: (selection: FileList | null) => void; accept?: string; multiple?: boolean; }; export declare const FileInput: { ({ accept, children, multiple, onFileSelect, ...rest }: FileInputProps): React.JSX.Element; displayName: string; };