/** * Null harness adapter (no-op fallback). * * Used when no harness is detected or the SDK is running standalone. * All methods return safe defaults that allow normal operation. */ import type { HarnessAdapter } from "./types"; export declare function createNullAdapter(): HarnessAdapter; //# sourceMappingURL=nullAdapter.d.ts.map