export interface ErrorPageProps {
    /** The type of error */
    type: string;
    /** The bold error label to display */
    label: string;
    /** The title text for the error */
    title: string;
    /** The descriptive message about the error for users to see */
    message: string;
}
declare const ErrorPage: (errorPage: ErrorPageProps) => any;
export default ErrorPage;
