import { Molecule } from "./molecule"; import { IMolecules } from "../interfaces"; import { PropertyStringSelectable, PropertyNumberSelectable, PropertyShadowSelectable } from "../common/props"; /** * The dropdowns molecule. * @category Molecules */ export declare class Dropdowns extends Molecule { static readonly FULL_COLOR = "Full Color"; static readonly LEFT_BORDER_ONLY = "Left border only"; /** The menu focus state property */ menuFocusState: PropertyStringSelectable; /** The menu shadow property */ menuShadow: PropertyShadowSelectable; /** The border radius property */ borderRadius: PropertyNumberSelectable; constructor(molecules: IMolecules); deserialize(obj: any): void; serialize(): any; }