/** * Generate n combinations with repeat values. * @param X - Matrix input * @param n - number of repeats * @ignore */ export declare function combinationsWithReplacement(X: any, n?: number): number[][];