import { SpaceProps, TypographyProps } from 'styled-system'; export declare const textSizes: { readonly BIG: "big"; readonly REGULAR: "regular"; readonly SMALL: "small"; }; export declare type Sizes = typeof textSizes[keyof typeof textSizes]; export interface TextProps extends SpaceProps, TypographyProps { color?: string; fontSize?: string; bold?: boolean; size?: Sizes; textTransform?: 'uppercase' | 'lowercase' | 'capitalize'; }