/** * Image command - Image generation and analysis */ export interface ImageOptions { model?: string; verbose?: boolean; output?: 'json' | 'text' | 'pretty'; json?: boolean; size?: string; quality?: string; style?: string; } export declare function execute(args: string[], options: ImageOptions): Promise;