import { default as React, CSSProperties } from 'react'; import { IOption } from '../../interfaces/select.type'; interface Props { options: IOption[]; checkedValue: string[]; onSelectionChange: (val: string[]) => void; maxOptions?: number; themeColor?: string; className?: string; style?: CSSProperties; categoryName?: string; variant?: 'default' | 'rounded'; placeholder?: string; } export declare const MultiSelectWithCount: React.FC; export {};