import { ForwardRefExoticComponent, RefAttributes, HTMLAttributes } from 'react'; import { CheckboxRootProps } from '@base-ui/react/checkbox'; import { VariantProps } from 'class-variance-authority'; import { ClassProp } from 'class-variance-authority/types'; type Orientation = 'horizontal' | 'vertical'; declare const CheckboxGroup: ForwardRefExoticComponent & { orientation?: Orientation; } & RefAttributes>; interface CheckboxItemVariantProps { variant?: 'default' | 'card' | null; } declare const checkboxItemVariants: (props?: (CheckboxItemVariantProps & ClassProp) | undefined) => string; declare const CheckboxItem: ForwardRefExoticComponent & VariantProps & RefAttributes>; declare const CheckboxItemControl: ForwardRefExoticComponent & RefAttributes>; declare const CheckboxItemLabel: ForwardRefExoticComponent & RefAttributes>; declare const CheckboxItemDescription: ForwardRefExoticComponent & RefAttributes>; export { CheckboxGroup, CheckboxItem, CheckboxItemControl, CheckboxItemDescription, CheckboxItemLabel, };