/// import { IFieldProps } from "../../common/field"; interface IProps extends IFieldProps { handleOpen: () => void; showValidation: (info?: string) => JSX.Element; loading: boolean; } declare function SelectControl(props: IProps): JSX.Element; export default SelectControl;