import { Molecule } from "./molecule"; import { Shade } from "../atoms/index"; import { IMolecules } from "../interfaces"; import { PropertyNumberSelectable, PropertyShadowSelectable, PropertyColorShade } from "../common/props"; /** * The modal molecule. * @category Molecules */ export declare class Modal extends Molecule { /** The modal color shade property */ color: PropertyColorShade; /** The modal border radius property */ borderRadius: PropertyNumberSelectable; /** The modal shadow property */ shadow: PropertyShadowSelectable; private atoms; constructor(molecules: IMolecules); getColorSelectables(): Shade[][]; private getPrimary; deserialize(obj: any): void; serialize(): any; }