UNPKG

mui-forms

Version:

Material UI forms with json based schema

9 lines (8 loc) 298 B
/// <reference types="react" /> import { IFieldProps } from "../../common/field"; interface IProps extends IFieldProps { handleOpen: () => void; showValidation: () => JSX.Element; } declare function MultiSelectControl(props: IProps): JSX.Element; export default MultiSelectControl;