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