import { IChartField } from '@qn-pandora/app-sdk';
import OneDChartStyleService from '../../../base-pandora-visualization/services/chart-style/charts/one-d';
import LegendChartStore from './legend-chart';
import { IBaseAnalysisChartsProps } from '../constants/model';
export default abstract class OneDLegendChartStore<T extends OneDChartStyleService = OneDChartStyleService> extends LegendChartStore<T> {
    get isDateSeries(): boolean;
    get currentMetrics(): IChartField[];
    get currentBuckets(): IChartField[];
    get chartDataset(): import("@qn-pandora/app-sdk").IChartDataset;
    get baseData(): Array<{
        name: string;
        value: any;
        bucketName: string;
    }>;
    handleDrillDown(params: any): void;
    constructor(getProps: () => IBaseAnalysisChartsProps);
}
