import { SpaceProps, TypographyProps } from 'styled-system';
export interface TextProps extends SpaceProps, TypographyProps {
    color?: string;
    fontSize?: string;
    bold?: boolean;
    small?: boolean;
    textTransform?: 'uppercase' | 'lowercase' | 'capitalize';
}
