import type { HarnessConfig } from '../schemas/config.schema.js'; import { type RouteInventory } from '../schemas/route-inventory.schema.js'; import { type RepoAnalysis } from '../schemas/repo-analysis.schema.js'; import type { RunArtifactsOptions } from '../harness/run-options.js'; export interface ObserveResult { routes: RouteInventory; repo: RepoAnalysis | null; } export declare function observe(baseUrl: string, repoPath: string | undefined, config: HarnessConfig, artifacts?: RunArtifactsOptions): Promise; //# sourceMappingURL=observe.d.ts.map