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; id?: string; } export declare const QuickMultiSelect: React.FC; export {};