import React from 'react'; import type { Text as NativeText } from 'react-native'; import { type TextBaseProps, type TextProps } from './Text'; /** * @deprecated Use `Text` with `font="caption"` instead. This will be removed in a future major release. * @deprecationExpectedRemoval v10 */ export type TextCaptionBaseProps = TextBaseProps; /** * @deprecated Use `Text` with `font="caption"` instead. This will be removed in a future major release. * @deprecationExpectedRemoval v10 */ export type TextCaptionProps = TextProps; /** * @deprecated Use `Text` with `font="caption"` instead. This will be removed in a future major release. * @deprecationExpectedRemoval v10 */ export declare const TextCaption: React.MemoExoticComponent< ({ ref, font, ...props }: TextCaptionProps & { ref?: React.Ref; }) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=TextCaption.d.ts.map