/** * Get command - Fetch a single record by ID */ import type { Colors } from '../ui/colors.js'; export interface GetOptions { model: string; id: string; format: 'json' | 'csv' | 'ndjson'; output?: string; quiet: boolean; baseUrl: string; colors: Colors; } export declare function runGet(options: GetOptions): Promise; //# sourceMappingURL=get.d.ts.map