export declare function bindSessionToProject(sessionKey: string, projectId: string): void; export declare function unbindSessionFromProject(sessionKey: string): void; export declare function listProjectSessionKeys(projectId: string, limit?: number, offset?: number): string[]; export declare function bindSessionsToProject(sessionKeys: string[], projectId: string): void; export declare function moveSessionToProject(sessionKey: string, targetProjectId: string): void;