import { TypographyStyling } from "./typographyStyling"; import { Atom } from "./atom"; import { IAtoms } from "../interfaces"; /** * The stat styles atom. * @category Atoms */ export declare class StatStyles extends Atom { /** The stat typography styling properties */ stat: TypographyStyling; constructor(atoms: IAtoms); deserialize(obj: any): void; serialize(): any; }