import { type ControlGroupCaptionProps, type ControlGroupLabelProps, type ControlGroupProps, type ControlGroupValidationProps } from '../ControlGroup';
export type CheckboxGroupProps = ControlGroupProps;
export type CheckboxGroupLabelProps = ControlGroupLabelProps;
export type CheckboxGroupCaptionProps = ControlGroupCaptionProps;
export type CheckboxGroupValidationProps = ControlGroupValidationProps;
export declare const CheckboxGroup: import("react").ForwardRefExoticComponent<ControlGroupProps & import("react").RefAttributes<HTMLFieldSetElement>> & {
    Label: import("react").ForwardRefExoticComponent<{
        visuallyHidden?: boolean;
    } & import("react").HTMLAttributes<HTMLLegendElement> & import("react").RefAttributes<HTMLLegendElement>>;
    Caption: import("react").ForwardRefExoticComponent<ControlGroupCaptionProps & import("react").RefAttributes<HTMLSpanElement>>;
    Validation: import("react").ForwardRefExoticComponent<{
        variant: import("..").FormValidationStatus;
    } & import("react").HTMLAttributes<HTMLSpanElement> & import("react").RefAttributes<HTMLSpanElement>>;
};
