export interface VizServerOptions { contextDir: string; viewerDir: string; port: number; repoName: string; } export interface VizServer { url: string; close(): Promise; } export declare function startVizServer(opts: VizServerOptions): Promise; //# sourceMappingURL=serve.d.ts.map