/// import './multiselect.scss'; export interface IDropdownOptions { label: string; value: number; } export interface IMultiselectProps { id: string; options: any[]; onClick(onClick: number[]): void; onDropdownVisibleChange?: (visible: boolean) => void; placeholder?: any; defaultValues: any[]; isPartiallyDisabled?: boolean; isSelectallVisible?: boolean; customClass?: string; } export declare const MultiSelect: ({ options, onClick, onDropdownVisibleChange, id, placeholder, defaultValues, isPartiallyDisabled, isSelectallVisible, customClass }: IMultiselectProps) => JSX.Element;