import { SelectProps } from "@material-ui/core/Select"; import React from "react"; export interface MultiSelectChoiceType { value: string; label: string; } export interface MultiSelectFieldProps { choices: MultiSelectChoiceType[]; disabled?: boolean; error?: boolean; hint?: string; label?: string; name?: string; noResultsText: string; selectProps?: SelectProps; value?: string[]; onChange(event: any): any; } export declare const MultiSelectField: React.FC; export default MultiSelectField;