import React from "react";
interface ErrorLayoutProps {
    errorMessage: string;
    onRetry?: () => void;
    onRetryReload?: boolean;
    hideRetryButton?: boolean;
}
declare const ErrorPage: React.FC<ErrorLayoutProps>;
export default ErrorPage;
