import { default as React } from 'react'; import { OmitPrivate, RichText } from '../../types'; export interface FieldHelperTextOwnProps { /** * Helper text instructing user on how to fill out the field. Using hint over placeholder text is preferred. * See error and warning for more critical instructions. */ hint?: RichText; /** * Helper text instructing user on how to fill out the field that are not critical to resolve to continue. * See error for more critical instructions, and hint for less critical instructions. */ warning?: RichText; /** * Helper text instructing user on how to fill out the field that are critical and should be resolved to continue. * See warning or hint for less critical instructions. */ error?: RichText; } export interface FieldHelperTextInheritedSpanProps extends OmitPrivate> { } export interface FieldHelperTextProps extends FieldHelperTextOwnProps, FieldHelperTextInheritedSpanProps { } export declare const FieldHelperText: React.FC;