import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface InputWarningProps extends ComposableProps<'p'> { /** * The warning message content. */ children: React.ReactNode; } /** * InputWarning Component * * A composable component for displaying warning messages below an Input field. * Automatically applies warning styling and accessibility attributes. * * @public * * @example * ```tsx * * Email * * Please verify your email address * * ``` * * @remarks * - Wraps the HTML `

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