import React from 'react'; import type { Polymorphic } from '../core/polymorphism'; import { type TextBaseProps } from './Text'; export declare const textInheritDefaultElement = 'span'; export type TextInheritDefaultElement = typeof textInheritDefaultElement; export type TextInheritBaseProps = TextBaseProps; export type TextInheritProps = Polymorphic.Props< AsComponent, TextInheritBaseProps >; type TextInheritComponent = (( props: TextInheritProps, ) => Polymorphic.ReactReturn) & Polymorphic.ReactNamed; export declare const TextInherited: TextInheritComponent; export {}; //# sourceMappingURL=TextInherited.d.ts.map