import type { TaskRun } from "./types.js"; export interface DashboardServer { url: string; close(): Promise; } export interface DashboardServerOptions { storageDirectory: string; host?: string; port?: number; } export declare function readTaskRuns(storageDirectory: string): Promise; export declare function readGlobalTaskRuns(storageDirectory: string): Promise; export declare function startDashboardServer(options: DashboardServerOptions): Promise;