import { default as React } from 'react';
export interface HelperTextProps {
/** Helper text content */
children: React.ReactNode;
/** Variant (affects color and icon) */
variant?: 'default' | 'error' | 'success' | 'warning';
/** Show icon */
showIcon?: boolean;
/** Size */
size?: 'sm' | 'base';
/** Additional className */
className?: string;
}
/**
* HelperText Component
*
* Text component for form field descriptions, error messages, and hints.
* Supports different variants with optional icons.
*
* @example
* ```tsx
*
* Enter your email address
*
* ```
*
* @example
* ```tsx
*
* This field is required
*
* ```
*/
export declare const HelperText: React.FC;
//# sourceMappingURL=helper-text.d.ts.map