import type { SpotlightMemoryEntry } from "@inupedia/spotlight-protocol"; export interface PackMemoryPaths { root: string; exactDir: string; exactIndexPath: string; exactEntriesPath: string; semanticDir: string; semanticDbPath: string; metaPath: string; } /** Resolve pack-scoped memory directories (mirrors assets.jsonl layout). */ export declare function resolvePackMemoryDir(packsRoot: string, projectId: string): PackMemoryPaths; import type { ExactMemoryBackend, SemanticMemoryBackend } from "./memoryBackends.js"; export interface PackMemoryMeta { version: string; exactCount?: number; semanticCount?: number; updatedAt: string; exactBackend?: ExactMemoryBackend; semanticBackend?: SemanticMemoryBackend; countsAvailable?: boolean; } export declare function defaultPackMemoryMeta(): PackMemoryMeta; export type { SpotlightMemoryEntry }; //# sourceMappingURL=paths.d.ts.map