export interface FileInputProps {
    className?: string;
    onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
    label?: string;
    accept?: string;
    multiple?: boolean;
    required?: boolean;
    disabled?: boolean;
    id?: string;
    name?: string;
    "aria-label"?: string;
    "aria-describedby"?: string;
}
export declare const FileInput: import('react').ForwardRefExoticComponent<FileInputProps & import('react').RefAttributes<HTMLInputElement>>;
