import { ITypographyParameters } from "../../types"; interface IBuiltTypography { fontWeight: string; fontSize: string; letterSpacing: string; textDecoration: string; lineHeight: string; } export declare const buildTypography: (props: ITypographyParameters) => IBuiltTypography; export declare const buildTypographyInPixels: (props: ITypographyParameters) => IBuiltTypography; export {};