import * as React from 'react'; export interface IMultiSelectOption { value: string; label: string; count?: number; } interface MultiSelectProps { options: IMultiSelectOption[]; values: string[]; onValueChange: (values: string[]) => void; placeholder?: string; className?: string; dropdownWidth?: string; align?: 'start' | 'center' | 'end'; getTooltipByMaterialAndSection?: (material: string, section: string) => any; sectionName?: string; } declare const MultiSelect: React.ForwardRefExoticComponent>; export { MultiSelect }; export type { MultiSelectProps };