@manojadams/metaforms
Version:
Meta-data driven forms
19 lines (18 loc) • 602 B
TypeScript
/// <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;