import type { Config } from '../config/schema.js'; import type { Project } from './types.js'; export declare function resolveProjectWorkspacePath(config: Config, sessionKey: string, project: Project | null): string; export declare function getProjectForSession(sessionKey: string): Project | null; export declare function getProjectWorkspacePathForSession(sessionKey: string): string | null;