/// <reference types="react" />
interface ICheckboxSelectProps {
    label?: string;
    checkboxes: {
        label: string;
        isSelected: boolean;
        disabled: boolean;
        setValue: () => void;
    }[];
    addClassname?: string;
}
export declare const CheckboxSelect: React.FC<ICheckboxSelectProps>;
export {};
