import { IOrganisms } from "../interfaces"; import { Organism } from "./organism"; import { PropertyBoolean, PropertyNumberSelectable, PropertyButtonText } from "../common/props"; /** * The secondary nav organism. * @category Organisms */ export declare class SecondaryNav extends Organism { /** The sticky property */ sticky: PropertyBoolean; /** The vertical padding property */ verticalPadding: PropertyNumberSelectable; /** The horizontal tab padding property */ horizontalTabPadding: PropertyNumberSelectable; /** The nav text property */ navText: PropertyButtonText; constructor(organisms: IOrganisms); deserialize(obj: any): void; serialize(): any; }