/**
 * https://simple-statistics.github.io/docs/#combinationsreplacement
 */
declare function combinationsReplacement<T>(x: readonly T[], k: number): T[][];

export default combinationsReplacement;
