/** * Query Rewrite command - Rewrite queries for better search results */ export interface QueryRewriteOptions { model?: string; verbose?: boolean; output?: 'json' | 'text' | 'pretty'; json?: boolean; strategy?: string; count?: number; } export declare function execute(args: string[], options: QueryRewriteOptions): Promise;