import { TCategory, TModeSelect, TOption } from './Select.types.ts';

export interface IOption {
    category: TCategory;
    selectedValues?: TOption[];
    disabledOptions: TOption[];
    selectedOptions: TOption[];
    clickableOptions?: (string | undefined)[];
    handleOptionClick: (option: TOption | TOption[]) => void;
    sizeIcon?: string;
    mode: TModeSelect;
    isDisabledNotClickable?: boolean;
}
export declare const Category: ({ category, selectedOptions, disabledOptions, clickableOptions, handleOptionClick, sizeIcon, isDisabledNotClickable, mode }: IOption) => import("react/jsx-runtime").JSX.Element;
