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