/// declare type TItem = { id: string; label: string; }; interface DSComboboxMultipleProps { items: TItem[]; onChange: (selectedItemIds?: string[]) => void; selectedItemIds?: string[]; maxSelectedItemCount?: number; placeholder?: string; disabled?: boolean; error?: boolean; id?: string; /** * Max height of expanded dropdown list * @default "200px" */ maxDropdownHeight?: string; /** * If onCreate is defined and item is not found by label in items list, * then a new item can be created */ onCreate?: (value: string) => void; } export declare const DSComboboxMultiple: (props: DSComboboxMultipleProps) => JSX.Element; export {};