/** * Top-level config keys owned by one host plugin rather than the shared config * loader. Both harnesses read the same CortexKit config file, so each schema * strips the other harness's declared keys before strict validation. */ export declare const OPENCODE_ONLY_KEYS: readonly ["auto_update"]; /** Pi currently has no top-level keys that OpenCode does not understand. */ export declare const PI_ONLY_KEYS: readonly []; /** Strip only known top-level keys owned by the other harness. */ export declare function stripHarnessSpecificConfigKeys(value: unknown, keys: readonly string[]): unknown; //# sourceMappingURL=config-keys.d.ts.map