import { ContextValue, DOMRenderProps } from './utils'; import React, { HTMLAttributes } from 'react'; export interface TextProps extends HTMLAttributes, DOMRenderProps { elementType?: string; } export declare const TextContext: React.Context>; export declare const Text: React.ForwardRefExoticComponent>;