/** * k-of-n aggregate for matchGroup (ยง3). Deliberately a full scan that * never breaks: per-member results must never influence control flow in * a way an observer could time or decompose. Returns ONLY the aggregate. * @module */ export declare function evaluateKofN(results: readonly boolean[], min: number): boolean;