import { EnumOption } from '@jsonforms/core'; /** * `value` is the value used in the multi-select component, `options` is the list of options, and * `params.onChange` is the callback for changes in the selected values. Returns the props and methods * for the multi-select component. */ export declare function useMultiSelectProps(value: string[], options: EnumOption[], { onChange }: { onChange: (value?: string[]) => void; }): { value: string | string[]; onChange: (value: string[]) => void; data: EnumOption[]; searchable?: undefined; } | { value: string | string[]; onChange: (value: string[]) => void; data: EnumOption[]; searchable: boolean; };