export const DENSITY: "density"; export class Grid2DMark extends Mark { constructor(type: any, source: any, options: any); densityMap: {}; /** @type {number} */ bandwidth: number; /** @type {string} */ interpolate: string; /** @type {number} */ pixelSize: number; /** @type {number} */ pad: number; /** @type {number|undefined} */ width: number | undefined; /** @type {number|undefined} */ height: number | undefined; query(filter?: any[]): import("@uwdata/mosaic-sql").SelectQuery; extentX: any; extentY: any; bins: [number, number]; groupby: string[]; aggr: string[]; /** * @returns {[number, number]} The bin dimensions. */ binDimensions(): [number, number]; queryResult(data: any): this; grids0: { numRows: number; columns: { [key: string]: Arrayish; }; }; convolve(): this; grids: { numRows: number; columns: { [key: string]: Arrayish; }; } | { numRows: number; columns: { [x: string]: import("./util/grid.js").Arrayish | Int32Array | Uint8Array | Int8Array | Uint8ClampedArray | Int16Array | Uint16Array | Uint32Array | Float32Array | Float64Array; }; }; } import { Mark } from './Mark.js'; //# sourceMappingURL=Grid2DMark.d.ts.map