import { RJSFSchema } from "@rjsf/utils";
import { Enumeration } from "../../../types";
type Props = {
    options?: Enumeration[];
    onChange: (data: unknown) => unknown;
    formData: any;
    name: string;
    disabled: boolean;
    required?: boolean;
    schema: RJSFSchema;
};
declare const MultiSelectWidget: (props: Props) => import("react/jsx-runtime").JSX.Element;
export default MultiSelectWidget;
//# sourceMappingURL=MultiSelectWidget.d.ts.map