/** * Describe command - Show model schema * Uses existing fetchModelMetadata() from crawler.ts - no wheel reinvention */ import type { Colors } from '../ui/colors.js'; export interface DescribeOptions { model: string; format: 'json' | 'csv' | 'ndjson'; output?: string; quiet: boolean; baseUrl: string; colors: Colors; } export declare function runDescribe(options: DescribeOptions): Promise; //# sourceMappingURL=describe.d.ts.map