import './FormError.scss';
import { ReactElement } from 'react';
export interface FormErrorProps {
    helpText?: string;
    error?: ReactElement | string | boolean | null;
}
export declare const FormError: (props: FormErrorProps) => import("react/jsx-runtime").JSX.Element;
