import { TypographyStyling } from "./typographyStyling"; import { Atom } from "./atom"; import { IAtoms } from "../interfaces"; /** * The small text styles atom. * @category Atoms */ export declare class SmallTextStyles extends Atom { /** The subtitle1 topography styling properties */ subtitle1: TypographyStyling; /** The subtitle2 topography styling properties */ subtitle2: TypographyStyling; /** The caption topography styling properties */ caption: TypographyStyling; /** The caption bold topography styling properties */ captionBold: TypographyStyling; /** The overline topography styling properties */ overline: TypographyStyling; /** The overline large topography styling properties */ overlineLarge: TypographyStyling; /** The overline extra large topography styling properties */ overlineExtraLarge: TypographyStyling; /** The label1 topography styling properties */ label1: TypographyStyling; /** The label1 all caps topography styling properties */ label1AllCaps: TypographyStyling; /** The label2 all caps topography styling properties */ label2: TypographyStyling; /** The label2 all caps topography styling properties */ label2AllCaps: TypographyStyling; /** The label small topography styling properties */ labelSmall: TypographyStyling; /** The call-to-action topography styling properties */ callToAction: TypographyStyling; /** The call-to-action small topography styling properties */ callToActionSmall: TypographyStyling; /** The small topography styling properties */ small: TypographyStyling; /** The small semi-bold topography styling properties */ smallSemibold: TypographyStyling; constructor(atoms: IAtoms); deserialize(obj: any): void; serialize(): any; }