export declare function getDataDir(): string; export declare function getHistoryDir(): string; export declare function getPlanDir(): string; export declare function getLogsDirRoot(): string; /** * Global (non-session) tool-output root — used by `clear-artifacts` and as * a fallback when no session workspace is bound (one-shot / early boot). */ export declare function getGlobalArtifactDir(): string; /** * Tool-output directory for the current session. * * Prefer the active session's `{workspace}/temp` so each history session * keeps its run outputs isolated. Explicit `CLAI_ARTIFACT_DIR` always wins * (tests + power-user override). Falls back to the global outputs dir when * no session is bound. */ export declare function getArtifactDir(): string; export declare function getJobsDir(): string;