import { Molecule } from "./molecule"; import { IMolecules } from "../interfaces"; import { PropertyBoolean, PropertyPixelSelectable, PropertyBackgroundColorStyle, PropertyShadowSelectable } from "../common/props"; /** * The Chart Bar molecule. * @category Molecules */ export declare class ChartBar extends Molecule { /** The chart bar background color property */ barBackgroundColor: PropertyBackgroundColorStyle; /** The chart bar width property */ barWidth: PropertyPixelSelectable; /** The chart bar radius property */ barRadius: PropertyPixelSelectable; /** The chart border property */ chartBorder: PropertyPixelSelectable; /** The bar shadow property */ barShadow: PropertyShadowSelectable; /** The chart line display property */ chartLinesDisplay: PropertyBoolean; /** The Y labels display property */ yLabelsDisplay: PropertyBoolean; constructor(molecules: IMolecules); deserialize(obj: any): void; serialize(): any; }