import { Node } from "../common/node"; import { Avatars } from "./avatars"; import { StandardButtons } from "./standardButtons"; import { SmallButtons } from "./smallButtons"; import { Cards } from "./cards"; import { ChartDonut } from "./chartDonut"; import { ChartPie } from "./chartPie"; import { ChartBar } from "./chartBar"; import { ChartLine } from "./chartLine"; import { ChartProgress } from "./chartProgress"; import { Chips } from "./chips"; import { Spacing } from "./spacing"; import { Dropdowns } from "./dropdowns"; import { Images } from "./images"; import { Modal } from "./modal"; import { Popovers } from "./popovers"; import { Sliders } from "./sliders"; import { Toasts } from "./toasts"; import { IDesignSystem, IMolecules } from "../interfaces"; /** * The molecules class. * @category Molecules */ export declare class Molecules extends Node implements IMolecules { readonly designSystem: IDesignSystem; /** The avatars molecule */ readonly avatars: Avatars; /** The standard buttons molecule */ readonly standardButtons: StandardButtons; /** The small buttons molecule */ readonly smallButtons: SmallButtons; /** The standard cards molecule */ readonly standardCards: Cards; /** The chart donut molecule */ readonly chartDonut: ChartDonut; /** The chart pie molecule */ readonly chartPie: ChartPie; /** The chart bar molecule */ readonly chartBar: ChartBar; /** The chart line molecule */ readonly chartLine: ChartLine; /** The chart progress molecule */ readonly chartProgress: ChartProgress; /** The chips molecule */ readonly chips: Chips; /** The spacing molecule */ readonly spacing: Spacing; /** The dropdowns molecule */ readonly dropdowns: Dropdowns; /** The images molecule */ readonly images: Images; /** The modal molecule */ readonly modal: Modal; /** The popovers molecule */ readonly popovers: Popovers; /** The sliders molecule */ readonly sliders: Sliders; /** The toasts molecule */ readonly toasts: Toasts; constructor(parent: Node); deserialize(obj: any): void; serialize(): any; }