/** @jsxRuntime classic */ /** @jsx jsx */ import { Component, type ReactNode } from 'react'; import { jsx } from '@keystone-ui/core'; type ErrorBoundaryProps = { children: ReactNode; }; type ErrorBoundaryState = { error?: any; hasError: boolean; isReloading: boolean; }; export declare class ErrorBoundary extends Component { state: ErrorBoundaryState; static getDerivedStateFromError(error: any): { error: any; hasError: boolean; }; reloadPage: () => void; render(): string | number | bigint | boolean | Iterable | Promise | jsx.JSX.Element | null | undefined; } type ErrorContainerProps = { children: ReactNode; }; export declare const ErrorContainer: ({ children }: ErrorContainerProps) => jsx.JSX.Element; export {}; //# sourceMappingURL=Errors.d.ts.map