/** * kb-hub output vault path resolution. * * Reads config.hub.outVault from the raw config file (bypassing Zod which * strips unknown keys). Falls back to /kb-hub. * Never throws. */ /** * Resolve the kb-hub output vault to an ABSOLUTE path. * Reads config.hub.outVault if present (resolved against projectRoot), else * falls back to /kb-hub. Never throws. * * @param projectRoot Absolute path to the current project root. */ export declare function resolveOutVault(projectRoot: string): Promise; /** Target priority.md path inside the resolved out vault. */ export declare function priorityMdPath(outVault: string): string; //# sourceMappingURL=hub-config.d.ts.map