import { Command } from "commander"; interface CaptureOptions { summary?: string; agent?: string; } /** * capture-session reads a session transcript from stdin and pushes it * to Memax for fact extraction. The extraction pipeline (Claude Haiku) * pulls out key decisions, learnings, and context — each becomes a * separate searchable memory. * * Usage: * memax capture-session --agent claude-code (reads stdin) * memax capture-session --summary "Implemented auth system with JWT" */ export declare function captureSessionCommand(options: CaptureOptions): Promise; export declare function registerCaptureSessionCommand(program: Command): void; export {}; //# sourceMappingURL=capture.d.ts.map