interface GlobalErrorProps {
    error: Error & {
        digest?: string;
    };
    standalone?: boolean;
}
export default function GlobalError({ error, standalone, ...rest }: GlobalErrorProps): import("react/jsx-runtime").JSX.Element;
export {};
