/** * Generate all combinations of choosing k items from n items as an iterator. * Useful for large combination sets to avoid storing all combinations in memory. * @param n - Total number of items. * @param k - Number of items to choose. * @yields Each combination as an array of indices. */ export declare function getCombinationsIterator(n: number, k: number): Generator; //# sourceMappingURL=getCombinationsIterator.d.ts.map