import { WidgetPlugin, DefaultNodeOptions } from '@sagold/react-json-editor'; import { WidgetMenuItems } from '../../components/widgetmenu/WidgetMenu'; export type MultiSelectOptions = DefaultNodeOptions & { /** list of titles for the JSON Schema enum options - matched by index */ enum?: string[]; /** if value should update on each keystroke instead of on blur. Defaults to false */ liveUpdate?: boolean; /** if false, will hide title. will hide complete title-header if no menu-actions are available */ showHeader?: boolean; /** internal option for menu action items */ widgetMenuItems?: WidgetMenuItems; }; export declare const MultiSelectWidgetPlugin: WidgetPlugin;