import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface CheckboxLabelProps extends ComposableProps<'span'> { /** * The label text. */ children: React.ReactNode; } /** * CheckboxLabel Component * * A composable label component for Checkbox inputs. * Automatically associates with the checkbox for accessibility. * * @public * * @example * ```tsx * * * Accept terms and conditions * * ``` * * @remarks * - Wraps the HTML `` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically styled based on checkbox state and context. * - Accessible: maintains proper label-checkbox association. */ export declare const CheckboxLabel: React.ForwardRefExoticComponent>; //# sourceMappingURL=CheckboxLabel.d.ts.map