import { CheckboxLimit, CheckboxLabelPosition } from './types';
declare const CheckboxGroupContext: import('react').Context<{
    labelPosition: CheckboxLabelPosition;
    disabled: boolean | undefined;
    list: boolean;
    value: string[];
    max: number | undefined;
    check: (value: string) => void;
    uncheck: (value: string) => void;
    onLimit: (type: CheckboxLimit) => void;
} | null>;
export default CheckboxGroupContext;
