import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface SwitchHelperProps extends ComposableProps<'p'> { /** * The helper text content. */ children: React.ReactNode; } /** * SwitchHelper Component * * A composable component for displaying helper text below a Switch. * Provides additional context or instructions for the user. * * @public * * @example * ```tsx * * * Enable notifications * You can change this later * * ``` * * @remarks * - Wraps the HTML `

` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically sets ID for accessibility. * - Styled with helper text color from design system. */ export declare const SwitchHelper: React.ForwardRefExoticComponent>; //# sourceMappingURL=SwitchHelper.d.ts.map