export declare const UNKNOWN_ORCHESTRATOR_HARNESS = "unknown"; export declare const ORCHESTRATOR_HARNESS_ENV = "AGENT_RELAY_ORCHESTRATOR_HARNESS"; export interface ProcessInfo { pid: number; ppid?: number; command?: string; } export interface DetectOrchestratorHarnessOptions { env?: NodeJS.ProcessEnv; startPid?: number; maxDepth?: number; processLookup?: (pid: number) => ProcessInfo | undefined; } export declare function sanitizeOrchestratorHarness(raw: string | undefined): string | undefined; export declare function inferHarnessFromCommand(command: string | undefined): string | undefined; export declare function detectOrchestratorHarness(options?: DetectOrchestratorHarnessOptions): string; //# sourceMappingURL=orchestrator-harness.d.ts.map