import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface CheckboxWrapperProps extends ComposableProps<'div'> { /** * The content of the checkbox wrapper. */ children?: React.ReactNode; } /** * CheckboxWrapper Component * * A composable wrapper component that contains all Checkbox sub-components. * Provides spacing and layout for the checkbox and its associated elements. * * @public * * @example * ```tsx * * * * Accept terms * Required * * * ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Provides default spacing between checkbox elements. */ export declare const CheckboxWrapper: React.ForwardRefExoticComponent>; //# sourceMappingURL=CheckboxWrapper.d.ts.map