/** * Vector command - Vector store management with full operations */ export interface VectorOptions { verbose?: boolean; output?: 'json' | 'text' | 'pretty'; json?: boolean; store?: string; db?: string; } export declare function execute(args: string[], options: VectorOptions): Promise;