import React from "react"; import { FileControlProps } from "./control.file.props"; /** * @alpha * Custom form control definition */ declare function FileControl(props: FileControlProps & { children: React.ReactNode; }): JSX.Element; export { FileControl }; export default FileControl;