import OneDLegendChartStore from '../stores/one-d-legend';
import SunburstStyleService from '../../../base-pandora-visualization/services/chart-style/charts/sunburst/sunburst';
import { IDataItem } from './transform';
export default class Store extends OneDLegendChartStore<SunburstStyleService> {
    get data(): IDataItem[];
    get series(): {
        type: string;
        data: IDataItem[];
        levels: {}[];
        cursor: string;
        itemStyle: {
            borderWidth: any;
        };
    }[];
    get legendSeriesData(): never[];
    get showLabel(): any;
    get levels(): {}[];
    get options(): {
        tooltip: {
            trigger: string;
            formatter: (params: any) => string;
        };
        series: {
            type: string;
            data: IDataItem[];
            levels: {}[];
            cursor: string;
            itemStyle: {
                borderWidth: any;
            };
        }[];
    };
    get chartOptions(): {
        tooltip: {
            trigger: string;
            formatter: (params: any) => string;
        };
        series: {
            type: string;
            data: IDataItem[];
            levels: {}[];
            cursor: string;
            itemStyle: {
                borderWidth: any;
            };
        }[];
    };
    handleDrillDown(params: any): void;
}
