import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface TextareaHelperProps extends ComposableProps<'p'> { /** * The helper text content. */ children: React.ReactNode; } /** * TextareaHelper Component * * A composable component for displaying helper text below a Textarea field. * Provides additional context or instructions for the user. * * @public * * @example * ```tsx * * ``` * * @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 TextareaHelper: React.ForwardRefExoticComponent