import { MapType } from '../../../constants/map/map';
import MapBubbleChartStore from '../store';
export default class BubbleChinaChartStore extends MapBubbleChartStore {
    mapType: MapType;
    get chinaMapProvince(): string[];
    get chinaMapCity(): string[];
    get chinaMapArea(): string[];
    getIsValidMapData: (seriesNames: string[]) => boolean;
    transformName(name?: string): string;
}
