import type { V2Store } from './store-facade.js'; export interface Address { root_uid: string; node_uid: string | null; } /** Resolve 'P0048' or 'P0048.2.1' to { root_uid, node_uid }. null if not found. */ export declare function resolveAddress(store: V2Store, address: string): Address | null; /** Rebuild 'P0048.2.1' for a node uid by walking the parent chain and collecting seq values. */ export declare function nodePathOf(store: V2Store, nodeUid: string): string | null;