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 * * * * Enable notifications * Required * * * ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Provides default spacing between switch elements. */ export declare const SwitchWrapper: React.ForwardRefExoticComponent>; //# sourceMappingURL=SwitchWrapper.d.ts.map