/// import { IFieldProps } from "../../common/field"; interface IProps extends IFieldProps { section: string; showValidation: () => JSX.Element; } declare function FileControl(props: IProps): JSX.Element; export default FileControl;