import { TThemeOption } from '../../../constants';
import { BoundType } from '../../../constants/outlier';
import { ISeriesPiece } from '../transforms/two-d';
export declare function getBoundSeries(lower: string | number, lowerType: BoundType, upper: string | number, upperType: BoundType, chartSeries: any[]): {
    lowerSery: ISeriesPiece;
    upperSery: any;
};
export declare function updateSeriesDataByBound(themeOption: TThemeOption, showingSeries: any[], lowerSery: any, upperSery: any): {
    type: string;
    silent: boolean;
    yAxisIndex: number;
    data: number[];
    barCategoryGap: number;
    tooltip: {
        show: boolean;
    };
    itemStyle: {
        color: any;
        opacity: number;
    };
    emphasis: {
        itemStyle: {
            color: any;
            opacity: number;
        };
    };
};
