/** * Read-only Markdown projections over MemoryNode rows. * * SQLite remains the source of truth; these files are deterministic views * for human inspection and lightweight agent handoff. */ import type { LoomStore, VisibilityFilter } from "./store.js"; export interface MarkdownViewFile { name: string; path: string; count: number; } export interface MarkdownViewsResult { dir: string; files: MarkdownViewFile[]; } export interface MarkdownViewsOptions { scope_type?: string; scope_id?: string; visibility?: VisibilityFilter; limit?: number; } export declare function exportMarkdownViews(store: LoomStore, opts?: MarkdownViewsOptions): MarkdownViewsResult;