import { type SpaceKnowledgeRoot } from './config.js'; export interface SpacePaths { id: string; root: string; config: string; drive: string; knowledgeRoots: SpaceKnowledgeRoot[]; runtime: string; uploads: string; outputs: string; tasks: string; inbox: string; artifacts: string; state: string; logs: string; } export interface AgentHomePaths { base: string; config: string; logs: string; scratch: string; memory: string; brain: string; } export declare function spacesDir(): string; export declare function spacePaths(_spaceId: string): SpacePaths; export declare function agentHomePaths(agentId: string): AgentHomePaths; export declare function agentHomePaths(_spaceId: string, agentId: string): AgentHomePaths; export declare function ensureSpaceLayout(spaceId: string): void; //# sourceMappingURL=storage-paths.d.ts.map