export declare class Centroid { mean: number; weight: number; constructor(mean: number, weight: number); add(r: Centroid): void; } /** CentroidList is sorted by the mean of the centroid, ascending. */ export type CentroidList = Centroid[]; export declare function sortCentroidList(centroids: CentroidList): void; //# sourceMappingURL=centroid.d.ts.map