import React from 'react';
import { type ComposableProps } from '../../../lib/slot';
export interface SwitchLabelProps extends ComposableProps<'span'> {
/**
* The label text.
*/
children: React.ReactNode;
}
/**
* SwitchLabel Component
*
* A composable label component for Switch inputs.
* Automatically styled based on switch state and context.
*
* @public
*
* @example
* ```tsx
*
*
* Enable notifications
*
* ```
*
* @remarks
* - Wraps the Typography component by default.
* - Supports `asChild` prop to merge props with a custom child element.
* - Automatically styled based on disabled state.
* - Accessible: maintains proper label-input association.
*/
export declare const SwitchLabel: React.ForwardRefExoticComponent>;
//# sourceMappingURL=SwitchLabel.d.ts.map