export type FeedbackTextType = 'hint' | 'valid' | 'error'; export type FeedbackTextPosition = 'left' | 'right'; export interface FeedbackTextProps { /** * Helper text */ text: React.ReactNode | React.ReactNode[]; /** * ID to reference the helper from aria-describedby attributes. * If omitted, then the id might be set through a parent component. */ id?: string; /** * Additional custom class. */ className?: string; /** * Type of form-helper. * @default hint */ type?: FeedbackTextType; /** * Position of the helper. * @default left */ position?: FeedbackTextPosition; } export declare const FeedbackText: (props: FeedbackTextProps) => JSX.Element; export default FeedbackText;