/** * Merge a hive patch into a raw config object (no Zod). Used by the CLI * and hive_enable so adapters can write ~/.agenticros/config.json without * pulling transport deps beyond what's already imported. */ export interface HiveConfigPatch { enabled?: boolean; url?: string; identityId?: string; hiveId?: string; recipes?: { detect?: boolean; describe?: boolean; health?: boolean; }; } export declare function mergeHiveConfig(raw: Record, patch: HiveConfigPatch): Record; //# sourceMappingURL=persist.d.ts.map