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