/// import { CursorProps, PropsWithVariant } from "../../theme"; import { BackgroundImageProps, BorderProps, ColorProps, FlexboxProps, FontFamilyProps, LayoutProps, SpaceProps, TextStyleProps as SSTextStyleProps, TypographyProps as SSTypographyProps, WidthProps } from "styled-system"; import { TextVariants } from "./Text.theme"; export declare type TextStyleProps = SSTypographyProps & SpaceProps & WidthProps & ColorProps & BackgroundImageProps & SSTextStyleProps & LayoutProps & FlexboxProps & FontFamilyProps & BorderProps & CursorProps; export interface TextProps extends TextStyleProps, PropsWithVariant { underlined?: boolean; onClick?: () => void; } export declare const ThemedText: import("styled-components").StyledComponent;