import { ForwardRefComponent } from './polymorphic'; import { AllSystemProps } from './system-props'; declare const defaultElement = "span"; export declare type TextProps = AllSystemProps; declare type TextComponent = ForwardRefComponent; export declare const Text: TextComponent; export {};