import { Molecule } from "./molecule"; import { IMolecules } from "../interfaces"; import { PropertyBoolean, PropertyPixelSelectable, PropertyShadowSelectable } from "../common/props"; /** * The chart pie molecule. * @category Molecules */ export declare class ChartPie extends Molecule { /** The segment radius property */ segmentRadius: PropertyPixelSelectable; /** The space between segments property */ spaceBetweenSegments: PropertyPixelSelectable; /** The progress shadow property */ progressShadow: PropertyShadowSelectable; /** The container display property */ containerDisplay: PropertyBoolean; /** The container padding property */ containerPadding: PropertyPixelSelectable; /** The container shadow property */ containerShadow: PropertyShadowSelectable; constructor(molecules: IMolecules); deserialize(obj: any): void; serialize(): any; }