import { FunctionComponent, HTMLProps, ReactNode } from 'react'; export interface FormHelperTextProps extends HTMLProps { children?: ReactNode; isError?: boolean; isActive?: boolean; className?: string; } declare const FormHelperText: FunctionComponent; export default FormHelperText;