import * as React from 'react'; import { CommonProps } from './common-prop-types'; declare type ControlProps = React.InputHTMLAttributes; declare type ControlPropsCleaned = Omit; interface FileControlProps extends CommonProps, ControlPropsCleaned { elementRef: React.RefObject; } declare class FileControl extends React.Component { static defaultProps: { elementRef: React.RefObject; }; render(): React.ReactElement; } export { FileControlProps }; export default FileControl;