import type { V2Store } from '../v2/store-facade.js'; import type { StringProbe } from './types.js'; export interface StableDeps { syncProbe?: StringProbe; deviceProbe?: StringProbe; } /** Real sync-status line from ~/.hmem/config.json (mirrors v1 buildSyncStatus logic). Safe when absent. */ export declare function defaultSyncProbe(): string; /** Real active-device block: the I-entry named in ~/.hmem/active-device, resolved in the store. Safe when absent. */ export declare function defaultDeviceProbe(store: V2Store): string; export declare function buildStableContext(store: V2Store, deps?: StableDeps): string;