import React from "react";
export declare type ErrorProps = {
    children: string | React.ReactNode;
};
export declare const Error: ({ children }: ErrorProps) => JSX.Element;
