/** * Custom harness adapter. * * Used when running babysitter outside any known harness environment. * Requires explicit `--session-id`, `--state-dir`, and other arguments * that known adapters (claude-code, codex, etc.) infer automatically * from environment variables. * * This is the fallback adapter when `detectAdapter()` finds no active * harness, replacing the null adapter as the default. */ import type { HarnessAdapter } from "./types"; export declare function createCustomAdapter(): HarnessAdapter; //# sourceMappingURL=customAdapter.d.ts.map