import React from 'react';
import { type ComposableProps } from '../../../lib/slot';
export interface SwitchWrapperProps extends ComposableProps<'div'> {
/**
* The content of the switch wrapper.
*/
children?: React.ReactNode;
}
/**
* SwitchWrapper Component
*
* A composable wrapper component that contains all Switch sub-components.
* Provides spacing and layout for the switch and its associated elements.
*
* @public
*
* @example
* ```tsx
*