import { TypographyStyling } from "./typographyStyling"; import { Atom } from "./atom"; import { IAtoms } from "../interfaces"; /** * The body styles atom. * @category Atoms */ export declare class BodyStyles extends Atom { /** The body1 topography styling properties */ body1: TypographyStyling; /** The body1 bold topography styling properties */ body1Bold: TypographyStyling; /** The body2 topography styling properties */ body2: TypographyStyling; /** The body2 bold topography styling properties */ body2Bold: TypographyStyling; /** The body3 topography styling properties */ body3: TypographyStyling; /** The body3 bold topography styling properties */ body3Bold: TypographyStyling; constructor(atoms: IAtoms); deserialize(obj: any): void; serialize(): any; }