#!/usr/bin/env node import type { CliResult } from "./commands/types.js"; export declare function runCli(argv?: string[]): Promise; /** Parse a --models value: comma-separated `model` or `model:role:weight` tokens. */ export declare function parseModelsFlag(value: string): { model: string; role: string; weight: number; }[]; /** Parse a numeric flag as a finite positive integer; throw on malformed input. */ export declare function parsePositiveIntFlag(value: string | undefined, flag: string): number | undefined;