import MapboxPathChartStyleService from '../../../../base-pandora-visualization/services/chart-style/charts/mapbox/path';
import BaseMapboxChartStore from '../store';
export default class Store extends BaseMapboxChartStore<MapboxPathChartStyleService> {
    get defaultStyle(): {
        bubbleStyle: {
            color: any;
            minSize?: number;
            maxSize?: number;
        };
        lineStyle: {
            color: any;
            width?: number;
            bubbleSize?: number;
        };
    };
}
