/** * Absolute path of the bundled knowledge/ directory, resolved for whichever * layout this module was loaded from. * * Hardcoding a single relative path is what caused issue #15: mapGenerator * resolved only the built layout, so every template lookup silently returned * null when the code ran from src/ — which is how the whole `mode:"template"` * write path shipped with no test ever exercising it. */ export declare function knowledgeDir(): string; /** Join segments onto the resolved knowledge/ directory. */ export declare function knowledgePath(...segments: string[]): string;