import type { ITextProps as INativeTextProps } from '@fluentui-react-native/adapters'; import type { FontTokens, FontVariantTokens, IForegroundColorTokens, IColorTokens } from '@fluentui-react-native/tokens'; export declare 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; }; }; //# sourceMappingURL=Text.types.d.ts.map