import React from 'react'; import { NextPageContext } from '../shared/lib/utils'; export declare type ErrorProps = { statusCode: number; title?: string; withDarkMode?: boolean; }; declare function _getInitialProps({ res, err, }: NextPageContext): Promise | ErrorProps; /** * `Error` component used for handling errors. */ export default class Error

extends React.Component

{ static displayName: string; static getInitialProps: typeof _getInitialProps; static origGetInitialProps: typeof _getInitialProps; render(): JSX.Element; } export {};