import { HmemSyncClient } from './sync/api.js'; export declare function countLocalEntries(hmemPath: string): number; export declare function clearLocalTables(hmemPath: string): void; interface MergeOpts { hmemPath: string; fileId: string; passphrase: string; salt: string; client: HmemSyncClient; configDirPath: string; } export declare function mergeWithRename(opts: MergeOpts): Promise<{ renamedCount: number; }>; export declare function runSetup(opts: { join?: boolean; }): Promise; export {};