UNPKG

agentic-ui-libs

Version:

A modular, config-driven analytics library for React and Angular applications

18 lines 579 B
import React from 'react'; import { DropdownOption } from '@/types'; interface MultiSelectProps { options: DropdownOption[]; value?: string | string[]; defaultValue?: string | string[]; placeholder?: string; multiSelect?: boolean; searchable?: boolean; onChange?: (value: string | string[]) => void; className?: string; iconSource?: 'agent' | 'app' | 'workflowtool' | 'url'; maxItems?: number; maxLabelLength?: number; } export declare const MultiSelect: React.FC<MultiSelectProps>; export {}; //# sourceMappingURL=MultiSelect.d.ts.map