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
*