import * as React from 'react'; interface IBaseTextTextProps { family?: string; height?: string; weight?: string; color?: string; tag: string; size?: string; uppercase?: boolean; showLabel?: boolean; theme?: any; } interface ITextProps extends IBaseTextTextProps { uppercase?: boolean; theme?: any; } declare const Text: import("styled-components").StyledComponent, any, ITextProps, never>; export default Text;