/** * Commander value parser that accepts only positive integers. Used for * `--limit` and `--steps` so `0`, negative numbers, and non-numeric input * fail at parse time with a clean usage error instead of silently feeding * `Array.prototype.slice` and producing surprising rollbacks. */ export declare function parsePositiveInt(name: string): (raw: string) => number; //# sourceMappingURL=cli-utils.d.ts.map