/** * CLI Command: lex frames import * * Import frames from JSON files for backup recovery, migration, and team sharing. */ import { type FrameStore } from "../../memory/store/index.js"; export interface ImportCommandOptions { fromDir?: string; fromFile?: string; dryRun?: boolean; skipDuplicates?: boolean; merge?: boolean; json?: boolean; } /** * Execute the 'lex frames import' command * * @param options - Command options * @param frameStore - Optional FrameStore for dependency injection */ export declare function importFrames(options?: ImportCommandOptions, frameStore?: FrameStore): Promise;