import { Observable } from 'rxjs'; import { ChartParams, ComputedDataMultiValue, ContainerPositionScaled, ContainerSize, DataFormatterMultiValue } from '../../lib/core-types'; import { BaseYAxisParams } from '../../lib/plugins-basic-types'; import { BasePluginFn } from './types'; import * as d3 from 'd3'; interface BaseYAxisContext { selection: d3.Selection; computedData$: Observable; fullParams$: Observable; fullDataFormatter$: Observable; fullChartParams$: Observable; isCategorySeprate$: Observable; containerPosition$: Observable; containerSize$: Observable; yScale$: Observable>; } export declare const createBaseYAxis: BasePluginFn; export {};