/** * Cache command - Caching management with full operations */ export interface CacheOptions { verbose?: boolean; output?: 'json' | 'text' | 'pretty'; json?: boolean; ttl?: number; } export declare function execute(args: string[], options: CacheOptions): Promise;