import MapboxChartStyleService from '../../../base-pandora-visualization/services/chart-style/charts/mapbox/base';
import OneDChartStore from '../stores/one-d';
import { MapboxThemeTypes } from '../../Base/Mapbox/mapThemeStyle/constant';
export default abstract class Store<T extends MapboxChartStyleService = MapboxChartStyleService> extends OneDChartStore<T> {
    abstract defaultStyle: any;
    get props(): {
        local: any;
        theme: MapboxThemeTypes;
        containerStyle: {
            width: number;
            height: number;
        };
        zoom: [number];
        center: [number, number];
    };
    get local(): any;
    get chartDataset(): import("@qn-pandora/app-sdk").IChartDataset;
    get geojson(): GeoJSON.FeatureCollection;
    get geojsonLine(): GeoJSON.Feature;
    handleDrillDown({ row }: {
        row: IKeyValues;
    }): void;
}
