import React from 'react'; interface IErrorPageProps { status?: string; statusMessage: string; additionalInfo?: React.ReactNode; supportUrl?: string; stack?: string; } /** @public */ export type ErrorPageClassKey = 'container' | 'title' | 'subtitle'; /** * Error page with status and description * * @public * */ export declare function ErrorPage(props: IErrorPageProps): React.JSX.Element; export {};