import { RootProps } from './checkbox-card-group-root'; import { GroupLabelProps } from './checkbox-card-group-label'; import { TitleProps } from './checkbox-card-group-item-title'; import { BodyProps } from './checkbox-card-group-item-body'; import { ItemProps } from './checkbox-card-group-item'; import { IndicatorProps } from './checkbox-card-group-indicator'; export declare const CheckboxCardGroup: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { disabled?: boolean; name?: string; required?: boolean; value?: string[]; onValueChange?: (value: string[]) => void; orientation?: "horizontal" | "vertical"; direction?: "left" | "right"; } & import('react').RefAttributes> & { GroupLabel: import('react').ForwardRefExoticComponent<(({ id?: string; asChild?: false; } & { as?: "h2"; asChild?: false; } & Omit, HTMLHeadingElement>, "ref">) | ({ id?: string; asChild?: false; } & { as?: "h3"; asChild?: false; } & Omit, HTMLHeadingElement>, "ref">) | ({ id?: string; asChild?: false; } & { as?: "h4"; asChild?: false; } & Omit, HTMLHeadingElement>, "ref">) | ({ id?: string; asChild?: false; } & { as?: "h5"; asChild?: false; } & Omit, HTMLHeadingElement>, "ref">) | ({ id?: string; asChild?: false; } & { as?: "h6"; asChild?: false; } & Omit, HTMLHeadingElement>, "ref">)) & import('react').RefAttributes>; Item: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { value: string; children: React.ReactNode; imageUrl?: string; checked?: boolean; onCheckedChange?: (checked: boolean) => void; disabled?: boolean; } & import('react').RefAttributes>; Title: import('react').ForwardRefExoticComponent, HTMLHeadingElement>, "ref"> & { asChild?: boolean; checked?: boolean; onCheckedChange?: (checked: boolean) => void; disabled?: boolean; } & import('react').RefAttributes>; Body: import('react').ForwardRefExoticComponent>; Indicator: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { checked?: boolean; onCheckedChange?: (checked: boolean) => void; disabled?: boolean; } & import('react').RefAttributes>; }; export type CheckboxCardGroupProps = { Root: RootProps; GroupLabel: GroupLabelProps; Item: ItemProps; Title: TitleProps; Body: BodyProps; Indicator: IndicatorProps; };