/** * List command - Browse namespaces and models */ import type { Colors } from '../ui/colors.js'; export interface ListOptions { namespace: string; format: 'json' | 'csv' | 'ndjson'; output?: string; quiet: boolean; baseUrl: string; colors: Colors; } export declare function runList(options: ListOptions): Promise; //# sourceMappingURL=list.d.ts.map