/**
 * https://simple-statistics.github.io/docs/#ckmeans
 */
declare function ckmeans(x: readonly number[], nClusters: number): number[][];

export default ckmeans;
