/// <reference types="react" />
import { IOption, IURLLoaderConfig } from "../../constants/model-interfaces";
import { IError } from "../../constants/common-interface";
declare const ModalSearchControl: (props: IProps) => JSX.Element;
interface IProps {
    config: IURLLoaderConfig | undefined;
    label: string;
    value: string | number | boolean | undefined;
    context: any;
    options: Array<IOption>;
    variant: any;
    error: IError;
    field: string;
    section: string;
    handleChange: Function;
    wrapperClassName: string;
}
export default ModalSearchControl;
