import { FunctionComponent } from "react";
import { IStructuredError } from "../../../../structured-errors/types";
export interface IErrorProps {
    details: IStructuredError;
}
export declare const Error: FunctionComponent<IErrorProps>;
