/// <reference types="react" />
import { ComponentBaseProps } from '../../core';
import { TypographyBodyProps } from './Typography';
export interface TextProps extends TypographyBodyProps, ComponentBaseProps {
}
export declare const Text: import("react").ForwardRefExoticComponent<TextProps & import("react").RefAttributes<HTMLSpanElement>>;
