import type { LocalSessionImportResult } from './FileSessionImportAdapter'; export interface SessionImportProfile { id: string; provider: string; offeringId: string; resolvePath(homeDir: string): string; importSession(payload: Record): LocalSessionImportResult; } export declare const OPENAI_CODEX_SESSION_IMPORT_PROFILE: SessionImportProfile; export declare const KIMI_CODE_SESSION_IMPORT_PROFILE: SessionImportProfile;