import type { ExplainResult, MemoryRoot } from "./types.js"; export type ExplainOptions = { relPath: string; budget: number; agent?: string; model?: string; }; export declare function explainPage(root: MemoryRoot, options: ExplainOptions): Promise;