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<string>} [colorProvider]
 * @param {IValueProvider<IChartMarker>} [markerProvider]
 * @returns {IBarAccessors}
 */
export declare function barAccessors(config?: IBarChartConfig, colorProvider?: IValueProvider<string>, markerProvider?: IValueProvider<IChartMarker>): IBarAccessors;
