import type { AgMapShapeBackgroundOptions, AgMapShapeBackgroundThemeableOptions } from 'ag-charts-community'; import { _ModuleSupport } from 'ag-charts-community'; import type { FeatureCollection, Geometry, InternalAgColorType } from 'ag-charts-core'; declare const SeriesProperties: typeof _ModuleSupport.SeriesProperties; export interface MapShapeBackgroundNodeDatum extends _ModuleSupport.DataModelSeriesNodeDatum { readonly index: number; readonly projectedGeometry: Geometry; style: AgMapShapeBackgroundThemeableOptions; } export declare class MapShapeBackgroundSeriesProperties extends SeriesProperties { topology?: FeatureCollection; fill: InternalAgColorType; fillOpacity: number; stroke: string; strokeOpacity: number; strokeWidth: number; lineDash: number[]; lineDashOffset: number; readonly tooltip: _ModuleSupport.SeriesTooltip>; } export {};