import { SpaceProps } from "styled-system"; import { AllowedCSSTextOverrides } from "./typography.component"; import { TypographyProps } from "./typography.component"; export interface StyledTypographyProps extends SpaceProps { $variant?: TypographyProps["variant"]; $fluid?: TypographyProps["fluid"]; $inverse?: TypographyProps["inverse"]; $screenReaderOnly?: TypographyProps["screenReaderOnly"]; $size?: TypographyProps["size"]; $tint?: TypographyProps["tint"]; $weight?: TypographyProps["weight"]; $display?: AllowedCSSTextOverrides["display"]; $whiteSpace?: AllowedCSSTextOverrides["whiteSpace"]; $wordBreak?: AllowedCSSTextOverrides["wordBreak"]; $wordWrap?: AllowedCSSTextOverrides["wordWrap"]; $textAlign?: AllowedCSSTextOverrides["textAlign"]; $textDecoration?: AllowedCSSTextOverrides["textDecoration"]; $textOverflow?: AllowedCSSTextOverrides["textOverflow"]; $textTransform?: AllowedCSSTextOverrides["textTransform"]; $overflow?: AllowedCSSTextOverrides["overflow"]; } declare const StyledTypography: import("styled-components").StyledComponent<"span", any, { theme: object; } & StyledTypographyProps, "theme">; export default StyledTypography;