/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ import { Core } from "../main.js"; export declare class FacetHelper { private _core; constructor(core: Core); split1d(ids: Uint32Array, facetsX: number, valuesX: Uint32Array, orderedIds: Uint32Array, facetIds: Uint32Array, offsets: Uint32Array, counts: Uint32Array): void; split2d(ids: Uint32Array, facetsX: number, facetsY: number, valuesX: Uint32Array, valuesY: Uint32Array, orderedIds: Uint32Array, facetIds: Uint32Array, offsets: Uint32Array, counts: Uint32Array): void; split3d(ids: Uint32Array, facetsX: number, facetsY: number, facetsZ: number, valuesX: Uint32Array, valuesY: Uint32Array, valuesZ: Uint32Array, orderedIds: Uint32Array, facetIds: Uint32Array, offsets: Uint32Array, counts: Uint32Array): void; wrap1d(ids: Uint32Array, values: Uint32Array, columns: number, coordsX: Uint32Array, coordsY: Uint32Array): number; }