type Search_item = { value: T; label: string; hint?: string; }; type Locked_section = { title: string; items: Search_item[]; }; type Search_multiselect_options = { message: string; items: Search_item[]; maxVisible?: number; initialSelected?: T[]; required?: boolean; lockedSection?: Locked_section; }; declare const cancelSymbol: unique symbol; declare const searchMultiselect: (options: Search_multiselect_options) => Promise; export { searchMultiselect, cancelSymbol }; export type { Search_item, Locked_section, Search_multiselect_options, }; //# sourceMappingURL=search-multiselect.d.ts.map