import MapboxBubbleChartStyleService from '../../../../base-pandora-visualization/services/chart-style/charts/mapbox/bubble';
import BaseMapboxChartStore from '../store';
export default class Store extends BaseMapboxChartStore<MapboxBubbleChartStyleService> {
    get defaultStyle(): {
        color: any;
        minSize?: number;
        maxSize?: number;
    };
    get sizeScaleAndRange(): {
        maxRange: number;
        minRange: number;
        scale: number;
    };
}
