import { BarComponentSvg } from "../mmviz-component-svg/index"; import { OrientationEnum } from "../mmviz-common/index"; import { ChartBuilderSvg } from "./builder"; export declare class BarChartBuilderSvg extends ChartBuilderSvg { component: BarComponentSvg; padding: number; colorScaleKey: string; customColorScale: any; colorRangeMapper: Function; orientationEnum: OrientationEnum; constructor(selector: string); setPadding(padding: number): this; setOrientation(orientation: OrientationEnum): this; setDataModel(dataModel: any): this; createView(): this; updateView(): this; resizeView(): this; }