import type { V2Store } from './store-facade.js'; export declare function tagRename(store: V2Store, oldTag: string, newTag: string): number; export declare function tagBulk(store: V2Store, filter: { prefix?: string; }, add?: string[], remove?: string[]): number; export interface MemStats { total: number; byPrefix: Record; nodes: number; } export declare function memoryStats(store: V2Store): MemStats; export interface HealthReport { brokenLinks: { src: string; dst: string; }[]; orphanNodes: number; } export declare function memoryHealth(store: V2Store): HealthReport; export declare function deleteEntryOrNode(store: V2Store, address: string): boolean; export declare function renameId(store: V2Store, address: string, newLabel: string): boolean; export declare function reparentNode(store: V2Store, sourceAddr: string, targetAddr: string): boolean; export declare function exportMarkdown(store: V2Store): string;