/** * Embed Command - Generate embeddings using AI SDK (preferred) or native provider * * Subcommands: * - text: Embed a single text or multiple texts * - file: Embed contents of a file * - query: Find similar texts using embeddings */ export interface EmbedOptions { verbose?: boolean; output?: 'json' | 'text' | 'pretty'; json?: boolean; model?: string; provider?: string; backend?: 'ai-sdk' | 'native' | 'auto'; dimensions?: number; file?: string; save?: string; } export declare function execute(args: string[], options: EmbedOptions): Promise;