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