import { CheckboxLimit, PositionX } from "../../types";
declare const CheckboxGroupContext: import("react").Context<{
    labelPosition: PositionX;
    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;
