/** * CLI Command: lex frames export * * Export frames from database to JSON files for backup, sharing, and archival. */ import { type FrameStore } from "../../memory/store/index.js"; export interface ExportCommandOptions { out?: string; since?: string; jira?: string; branch?: string; format?: "json" | "ndjson"; json?: boolean; } /** * Execute the 'lex frames export' command * * @param options - Command options * @param frameStore - Optional FrameStore for dependency injection (defaults to SqliteFrameStore) */ export declare function exportFrames(options?: ExportCommandOptions, frameStore?: FrameStore): Promise;