import type { AgentPromptFilesPaths } from "../agents/ops/agentPromptFilesEnsure.js"; /** * Resolves all per-user home paths under the configured users directory. * Expects: usersDir is absolute and userId is a non-empty stable id. */ export declare class UserHome { readonly root: string; readonly skills: string; readonly apps: string; readonly home: string; readonly desktop: string; readonly downloads: string; readonly documents: string; readonly developer: string; readonly knowledge: string; readonly memory: string; readonly tmp: string; constructor(usersDir: string, userId: string); knowledgePaths(): AgentPromptFilesPaths; } //# sourceMappingURL=userHome.d.ts.map