import * as SS from 'styled-system'; import { ColorProps, CursorProps, TextTransformProps, VisibilityProps } from '../styles/system'; import { TextVariant } from './Text.props'; export type TextProps = { variant?: keyof typeof TextVariant; noWrap?: boolean; } & SS.TypographyProps & SS.SpaceProps & SS.LayoutProps & SS.PositionProps & ColorProps & TextTransformProps & VisibilityProps & CursorProps & SS.FlexGrowProps & SS.FlexShrinkProps & SS.FlexBasisProps & SS.AlignSelfProps & SS.JustifySelfProps; declare const Text: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, { variant?: "body" | "label" | "title" | "display" | "inherit" | "titleLarge" | "titleSmall" | "bodyLarge" | "bodySmall" | "labelLarge" | "labelSmall" | "callout" | undefined; noWrap?: boolean | undefined; } & SS.TypographyProps>> & SS.SpaceProps>, string | number | symbol> & SS.LayoutProps>> & SS.PositionProps>> & ColorProps & TextTransformProps & VisibilityProps & CursorProps & SS.FlexGrowProps>> & SS.FlexShrinkProps>> & SS.FlexBasisProps>, import("csstype").Property.FlexBasis> & SS.AlignSelfProps>> & SS.JustifySelfProps>>, never>; export default Text;