export interface StandaloneDashboardOptions { title?: string; projectName: string; authToken: string; } /** * Render the dependency-free dashboard served by the standalone workflow * runtime. All run data is rendered client-side with textContent/createElement; * the only dynamic values in the initial document are escaped here. */ export declare function renderStandaloneDashboard(options: StandaloneDashboardOptions): string;