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