/// export interface IMultiselectInputProps { value: string; onChange: (event: any) => void; } export declare const MultiSelectInput: ({ value, onChange }: IMultiselectInputProps) => JSX.Element;