/** Return unique file paths modified during a session, ordered by first touch. */ export declare function getModifiedFilesFromSession(sessionId: string | null | undefined): string[]; /** Read the artifact file content for a thread. */ export declare function readArtifact(threadId: string): string | null; /** Remove the workspace directory for a thread. */ export declare function cleanupWorkspace(threadId: string): void;