/** * Get the session-based log path for date-organized logging * Structure: {basePath}/{YYYY-MM-DD}/{command}-{YYYYMMDD-HHMMSS}-{sessionId}/ * * @returns The session-specific log directory path */ export declare function getSessionLogPath(): string; /** * Clear the cached session path. Used by tests so each test gets a fresh path. * Not needed in normal CLI usage (one process = one command = one cache). */ export declare function clearSessionLogPathCache(): void;