import { default as React } from 'react';
interface FileInputProps {
    id?: string;
    label: string;
    multiple: boolean;
}
export declare const Input: React.ForwardRefExoticComponent<FileInputProps & React.RefAttributes<HTMLInputElement>>;
export {};
