import { IChartMarker, IValueProvider } from "../../../core/common/types"; import { IBarChartConfig } from "../types"; import { IBarAccessors } from "./bar-accessors"; /** * Creates {@link VerticalBarAccessors} or {@link VerticalBarAccessors} * using {@link IBarChartConfig#horizontal} horizontal property. Default orientation is **vertical**. * * @param {IBarChartConfig} [config] * @param {IValueProvider} [colorProvider] * @param {IValueProvider} [markerProvider] * @returns {IBarAccessors} */ export declare function barAccessors(config?: IBarChartConfig, colorProvider?: IValueProvider, markerProvider?: IValueProvider): IBarAccessors;