import { default as React } from 'react';

export interface UploadButtonProps {
    id?: string;
    value?: string;
    onChange: (newValue?: string) => void;
    accept?: string;
}
declare const FileUpload: React.FC<UploadButtonProps>;
export default FileUpload;
