import type { ITextProps as INativeTextProps } from '@fluentui-react-native/adapters'; import type { FontTokens, FontVariantTokens, IForegroundColorTokens, IColorTokens } from '@fluentui-react-native/tokens'; export const textName = 'RNFText'; /** * Properties for fabric native text field, these extend the default props for text */ export type ITextProps = TBase & FontVariantTokens & IForegroundColorTokens & { disabled?: boolean; }; export type ITextType = { props: ITextProps; tokens: FontTokens & IColorTokens; slotProps: { root: TBase; }; };