import { type ReactNode } from 'react';
import type { FormHelperTextProps } from '../../types';
type Props = {
    error: boolean;
    errorMessage?: ReactNode;
    helperText?: ReactNode;
    hideErrorMessage?: boolean;
    formHelperTextProps?: FormHelperTextProps;
};
declare const FormHelperText: (props: Props) => import("react/jsx-runtime").JSX.Element;
export default FormHelperText;
