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