import { DebugSessionManager } from './session-manager.js'; import { HarnessRegistry } from './harness-registry.js'; import type { ProviderDryRunOptions, ProviderDryRunResult } from './types.js'; export declare class DryRunRunner { private readonly sessions; private readonly registry; constructor(sessions: DebugSessionManager, registry: HarnessRegistry); runProviderPreprocess(options: ProviderDryRunOptions): Promise; }