import { Molecule } from "./molecule"; import { IMolecules } from "../interfaces"; import { PropertyStringSelectable, PropertyNumberSelectable } from "../common/props"; /** * The small buttons molecule. * @category Molecules */ export declare class SmallButtons extends Molecule { /** The visible height property */ visibleHeight: PropertyNumberSelectable; /** The horizontal padding property */ horizontalPadding: PropertyNumberSelectable; /** The button text property */ buttonText: PropertyStringSelectable; constructor(molecules: IMolecules); deserialize(obj: any): void; serialize(): any; }