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