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