import React from 'react';
export interface ErrorPageProps {
    pageTitle: string;
    errorCode: number;
}
export declare const ErrorPage: React.FC<ErrorPageProps>;
