/** .aida directory in user's project */ export declare function aidaDir(projectRoot?: string): string; /** Runs directory */ export declare function runsDir(projectRoot?: string): string; /** Run data directory for a specific branch + developer */ export declare function runDir(projectRoot: string, branchName: string, devName: string): string; /** Branch-level directory (shared PRD, analysis, requirement.json) */ export declare function branchDir(projectRoot: string, branchName: string): string; /** Branch-level requirement.json path */ export declare function requirementPath(projectRoot: string, branchName: string): string; /** Project-level index.json path */ export declare function indexPath(projectRoot?: string): string; /** Project-level summary.json path */ export declare function summaryPath(projectRoot?: string): string; /** Config file path */ export declare function configPath(projectRoot?: string): string; /** Project rule registry */ export declare function rulesRegistryPath(projectRoot?: string): string; /** Project skill registry */ export declare function skillsRegistryPath(projectRoot?: string): string; /** Imported tool config source */ export declare function toolConfigStorePath(projectRoot?: string): string; /** Local-only MCP bootstrap cache */ export declare function bootstrapStatePath(projectRoot?: string): string; /** Memory root */ export declare function memoriesDir(projectRoot?: string): string; /** Module memory directory */ export declare function moduleMemoriesDir(projectRoot?: string): string; /** Module memory index */ export declare function memoryIndexPath(projectRoot?: string): string; /** Stable on-disk name for module memory files */ export declare function moduleMemoryStorageName(moduleKey: string): string; /** Module memory source */ export declare function moduleMemoryPath(projectRoot: string, moduleKey: string): string; /** Module memory markdown view */ export declare function moduleMemoryViewPath(projectRoot: string, moduleKey: string): string; /** Legacy nested module memory source path */ export declare function legacyModuleMemoryPath(projectRoot: string, moduleKey: string): string; /** Legacy nested module memory markdown view path */ export declare function legacyModuleMemoryViewPath(projectRoot: string, moduleKey: string): string; /** Branch-scoped run context source */ export declare function runContextPath(projectRoot: string, branchName: string): string; /** Branch-scoped run context markdown view */ export declare function runContextViewPath(projectRoot: string, branchName: string): string; /** Branch-scoped aggregated memory pack markdown view */ export declare function runMemoryPackViewPath(projectRoot: string, branchName: string): string; //# sourceMappingURL=paths.d.ts.map