/** * Import sessions from external adapters into Claude Code storage format. * * This takes a CanonicalSession (from any adapter) and writes it as * a .jsonl file in ~/.claude/projects// so that it * becomes natively readable by Claude Code, Takumi, and all other tools. */ import type { CanonicalSession, ImportOptions, ImportResult } from "./types.js"; /** * Import canonical sessions into Claude Code storage. * * Sessions are placed in ~/.claude/projects//.jsonl * so they become natively readable by all tools in the ecosystem. */ export declare function importCanonicalSessions(sessions: CanonicalSession[], options?: ImportOptions): ImportResult; //# sourceMappingURL=import.d.ts.map