import { IOrganisms } from "../interfaces"; import { Organism } from "./organism"; import { PropertyStringSelectable, PropertyNumberSelectable } from "../common/props"; /** * The hero organism. * @category Organisms */ export declare class Hero extends Organism { static DISPLAY1: string; static DISPLAY2: string; static H1: string; static BODY1: string; static BODY2: string; static BODY3: string; static BODY1BOLD: string; static BODY2BOLD: string; static BODY3BOLD: string; /** The hero available colors property */ availableColors: PropertyStringSelectable; /** The hero vertical gap property */ verticalGap: PropertyNumberSelectable; /** The hero vertical spacing property */ verticalPadding: PropertyNumberSelectable; /** The hero title property */ title: PropertyStringSelectable; /** The hero body property */ body: PropertyStringSelectable; constructor(organisms: IOrganisms); deserialize(obj: any): void; serialize(): any; }