import * as React from 'react'; interface ErrorPageProps { errorCode: string; errorTitle: string; errorMessage: string; } export default function ErrorPage(props: ErrorPageProps): React.ReactElement; export {};