import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface InputSuccessProps extends ComposableProps<'p'> { /** * The success message content. */ children: React.ReactNode; } /** * InputSuccess Component * * A composable component for displaying success messages below an Input field. * Automatically applies success styling and accessibility attributes. * * @public * * @example * ```tsx * * Email * * Email verified successfully * * ``` * * @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 success color from design system. */ export declare const InputSuccess: React.ForwardRefExoticComponent>; //# sourceMappingURL=InputSuccess.d.ts.map