import type { CSSObject } from 'styled-components'; export interface TypographyItem extends CSSObject { fontSize: string; fontWeight: number; lineHeight: string; letterSpacing: string; textTransform?: 'uppercase'; } export declare enum TypographyItemName { TinyParagraph = "TinyParagraph", TinyParagraphItalic = "TinyParagraphItalic", TinyParagraphUnderline = "TinyParagraphUnderline", TinyParagraphStrike = "TinyParagraphStrike", TinyParagraphBold = "TinyParagraphBold", SmallParagraph = "SmallParagraph", SmallParagraphItalic = "SmallParagraphItalic", SmallParagraphUnderline = "SmallParagraphUnderline", SmallParagraphStrike = "SmallParagraphStrike", SmallParagraphBold = "SmallParagraphBold", RegularParagraph = "RegularParagraph", RegularParagraphItalic = "RegularParagraphItalic", RegularParagraphUnderline = "RegularParagraphUnderline", RegularParagraphStrike = "RegularParagraphStrike", RegularParagraphBold = "RegularParagraphBold", LargeParagraph = "LargeParagraph", LargeParagraphItalic = "LargeParagraphItalic", LargeParagraphUnderline = "LargeParagraphUnderline", LargeParagraphStrike = "LargeParagraphStrike", LargeParagraphBold = "LargeParagraphBold", SmallCapsHeadlineExtraSmall = "SmallCapsHeadlineExtraSmall", SmallCapsHeadline = "SmallCapsHeadline", SmallCapsHeadlineExpanded = "SmallCapsHeadlineExpanded", SuperTinyHeadline = "SuperTinyHeadline", TinyHeadline = "TinyHeadline", SmallHeadline = "SmallHeadline", RegularHeadline = "RegularHeadline", MediumHeadline = "MediumHeadline", SuperHeadline = "SuperHeadline", HugeHeadline = "HugeHeadline" } export declare type Typography = Record; export declare const typography: Typography;