import type { SessionStore } from '../core/session/session.js'; export interface CliSessionResolution { sessionKey: string; sourceSessionKey?: string; forked: boolean; notice?: string; error?: string; } export declare function createCliSessionKey(): string; export declare function resolveCliSession(options: { command: 'chat' | 'resume' | 'fork'; store: SessionStore; sessionKey?: string; useLast?: boolean; forkSource?: string; }): Promise; //# sourceMappingURL=session.d.ts.map