import * as React from 'react'; import { FontSizeVals, ParagraphSizes } from '../../enhancers'; import { PolymorphicComponentProps } from '../Box'; export declare type TextSizeVals = FontSizeVals | ParagraphSizes; export declare type TextOwnProps = { size?: TextSizeVals; }; export declare type TextProps = PolymorphicComponentProps; declare const defaultElement = "span"; export declare const Text: (props: TextProps) => JSX.Element; export {};