///
import React, { ReactNode } from 'react';
import { InputStatus } from '../input/types';
export type FormHelperTextElement = keyof Pick;
export interface FormHelperTextProps extends React.Attributes {
children?: ReactNode;
leftIcon?: ReactNode | boolean;
/** @default 'span' */
as?: FormHelperTextElement;
/** @default 'info' */
status?: InputStatus;
}
export declare const FormHelperText: React.FC]>;