/// import { FontFamilyProps } from './font_family'; import { FontSizeProps } from './font_size'; import { FontStyleProps } from './font_style'; import { FontWeightProps } from './font_weight'; import { LetterSpacingProps } from './letter_spacing'; import { LineHeightProps } from './line_height'; import { TextAlignProps } from './text_align'; import { TextColorProps } from './text_color'; import { TextDecorationProps } from './text_decoration'; import { TextTransformProps } from './text_transform'; /** * Style props for the typography of an element. * * @docsPath UI/Style System/Typography */ export interface TypographySetProps extends FontFamilyProps, FontSizeProps, FontStyleProps, FontWeightProps, LetterSpacingProps, LineHeightProps, TextAlignProps, TextColorProps, TextDecorationProps, TextTransformProps { } export declare const typographySet: import("@styled-system/core").styleFn; export declare const typographySetPropTypes: import("../../../private_utils").ObjectMap>;