import type { V2Store } from './store-facade.js'; export interface ActivateOpts { since?: number; } export interface ActivateResult { session_id: string; project: string; project_uid: string; } export declare function activate(store: V2Store, projectLabel: string, opts?: ActivateOpts): ActivateResult; export declare function getSessionLog(store: V2Store, sessionId: string, limit?: number): string;