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

export default combinationsReplacement;
