import { TextStyleCollection } from '@repay/cactus-theme'; import { ColorStyleProps, SpaceProps } from 'styled-system'; import { AllTextProps, FlexItemProps } from '../helpers/styled'; declare type FontProps = Omit; export interface TextProps extends SpaceProps, ColorStyleProps, FontProps, FlexItemProps { textStyle?: keyof TextStyleCollection; } export declare const Text: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, TextProps, never>; export default Text;