import type { ClaudeSession, ClaudeSessionOptions } from './sdk'; export type SessionKey = 'plan' | 'execute' | 'review' | 'verify' | 'pr' | 'recovery'; export type SessionPool = { enabled: boolean; get: (key: SessionKey, options: ClaudeSessionOptions) => ClaudeSession | undefined; close: () => void; }; export declare function createSessionPool(enabled: boolean): SessionPool;