interface ErrorHtmlOptions {
statusCode: number;
title: string;
message: string;
/** Optional path to display in error message */
pathname?: string;
/** Use simple unstyled HTML (for minimal fallback) */
minimal?: boolean;
}
export declare function generateErrorHtml(options: ErrorHtmlOptions): string;
export declare const ErrorPages: {
notFound(pathname?: string): string;
serverError(message?: string): string;
undeployed(): string;
memoryPressure(): string;
};
export {};
//# sourceMappingURL=error-html.d.ts.map