import { MultiSelectStyles } from './multi-select.css'; import * as React from 'react'; interface MultiSelectProps extends React.ButtonHTMLAttributes, MultiSelectStyles { options: { label: string; value: string; icon?: React.ComponentType<{ className?: string; }>; }[]; onValueChange: (value: string[]) => void; defaultValue?: string[]; placeholder?: string; maxCount?: number; modalPopover?: boolean; asChild?: boolean; className?: string; } declare const MultiSelect: React.ForwardRefExoticComponent>; export { MultiSelect }; //# sourceMappingURL=multi-select.d.ts.map