import React from 'react'; import type { Polymorphic } from '../core/polymorphism'; import { type TextBaseProps } from './Text'; export declare const textCaptionDefaultElement = 'span'; export type TextCaptionDefaultElement = typeof textCaptionDefaultElement; export type TextCaptionBaseProps = TextBaseProps; export type TextCaptionProps = Polymorphic.Props< AsComponent, TextCaptionBaseProps >; type TextCaptionComponent = (( props: TextCaptionProps, ) => Polymorphic.ReactReturn) & Polymorphic.ReactNamed; export declare const TextCaption: TextCaptionComponent; export {}; //# sourceMappingURL=TextCaption.d.ts.map