import { RequestProfile } from '../common/profiler.model'; import { ViewService } from './view.service'; export declare class TemplateBuilderService { private readonly viewService; constructor(viewService: ViewService); buildLiveLogsPage(): string; buildHealthPage(): string; buildCodeQualityPage(): string; buildEventsPage(): string; buildExceptionsPage(): string; buildSummaryPage(stats: Awaited>): string; private getMethodBadgeClass; buildDashboard(profiles: RequestProfile[]): string; buildDetail(profile: RequestProfile): string; private buildHeadersTable; private buildBodyView; private buildExceptionView; private buildTimingBar; buildQueriesList(queries: any[]): string; buildLogsList(logs: any[], currentPage: number, totalPages: number, totalLogs: number): string; buildEntitiesList(entities: any[]): string; buildNotFound(id: string): string; buildRoutesList(routes: any[]): string; buildCacheList(cacheOps: any[]): string; private buildRequestRow; private buildQueryDetail; private getTagBadge; private getDurationClass; private buildMetadataSidebar; private buildLogRow; private buildPagination; private getStatusColor; buildHttpCallsList(calls: any[]): string; private buildHttpCallsSection; private buildCacheSection; }