export interface IFormErrorProps {
className?: string;
style?: React.CSSProperties;
children?: React.ReactNode;
}
export declare const FormError: import("react").ForwardRefExoticComponent<IFormErrorProps & import("react").RefAttributes<HTMLDivElement>>;