import { type OpenRouterModel } from '../openrouter-catalog'; export interface ModelRow { id: string; name: string; inputCentsPerMtok: number | null; outputCentsPerMtok: number | null; capability: string; } export declare function rowsFromCatalog(models: OpenRouterModel[]): ModelRow[]; export declare function rowsFromCostTable(): ModelRow[]; export declare function filterRows(rows: ModelRow[], opts: { search?: string; capability?: string; task?: string; }): ModelRow[]; export declare function suggestedAssignments(task: string): Record; export declare function runModels(argv: string[]): Promise; //# sourceMappingURL=models.d.ts.map