import { BoxProps } from './Box';
import { ForwardRef } from './types';
export declare type TextProps = BoxProps;
/**
 * Primitive typographic component.
 *
 * Text style variants can be defined in the theme.text object.
 * @see https://theme-ui.com/components/text
 */
export declare const Text: ForwardRef<HTMLDivElement, TextProps>;
