import { HTMLChartRenderer } from './chart';
import { ShapeMapRenderOptions, StyleDefaults } from './data_styles';
import { RendererOptions } from './renderer_types';
import { Renderer } from './renderer';
import { RendererFactory } from './renderer_factory';
import { Cell, Field } from '../data_tree';
import type * as lite from 'vega-lite';
export declare class HTMLShapeMapRenderer extends HTMLChartRenderer {
private getRegionField;
private getColorField;
getDataValue(data: Cell): Date | string | number | null | undefined;
getDataType(field: Field): 'temporal' | 'ordinal' | 'quantitative' | 'nominal';
getVegaLiteSpec(data: Cell): lite.TopLevelSpec;
}
export declare class ShapeMapRendererFactory extends RendererFactory {
static readonly instance: ShapeMapRendererFactory;
create(document: Document, styleDefaults: StyleDefaults, rendererOptions: RendererOptions, _field: Field, options: ShapeMapRenderOptions, timezone?: string): Renderer;
get rendererName(): string;
}