import { default as React, InputHTMLAttributes } from 'react';
export interface FileInputProps extends InputHTMLAttributes<HTMLInputElement> {
    id: string;
}
export declare const FileInput: React.ForwardRefExoticComponent<FileInputProps & React.RefAttributes<HTMLInputElement>>;
