import React from 'react'; export interface HelpTextProps { /** * Contents of the help text. */ children?: React.ReactNode; /** * Additional class names to add. */ className?: string; } export declare const HelpText: React.ForwardRefExoticComponent>;