/** * Generate all combinations of choosing k items from n items. * @param n - Total number of items. * @param k - Number of items to choose. * @returns Array of combinations, where each combination is an array of indices. */ export declare function getCombinations(n: number, k: number): number[][]; //# sourceMappingURL=getCombinations.d.ts.map