import type { ErrorPageConfig, ErrorPageData } from './types'; /** * Generate the full error page HTML */ export declare function renderErrorPage(data: ErrorPageData, config?: ErrorPageConfig): string; /** * Create a simple error response for production */ export declare function renderProductionErrorPage(status: number, customMessage?: string): string;