import type { WikiPage } from './types.js'; export declare class ObsidianWriter { private readonly wikiPath; constructor(vaultPath: string, wikiDir?: string); /** * Find an existing page with a matching title in the same directory. * Prevents duplicates when LLM generates different filenames for the same entity. */ private findExistingPage; ensureDirectories(): void; writePage(page: WikiPage): string; appendLog(action: string, message: string): void; updateIndex(pages: WikiPage[]): void; getWikiPath(): string; } //# sourceMappingURL=obsidian-writer.d.ts.map