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> & { Label: import("react").ForwardRefExoticComponent<{ visuallyHidden?: boolean; } & import("react").HTMLAttributes & import("react").RefAttributes>; Caption: import("react").ForwardRefExoticComponent>; Validation: import("react").ForwardRefExoticComponent<{ variant: import("..").FormValidationStatus; } & import("react").HTMLAttributes & import("react").RefAttributes>; };