import { TextStyle, type TextProps } from 'react-native'; import React from 'react'; import { ThemeName } from '../constants/Colors'; export type Props = TextProps & { themeScheme?: 'light' | 'dark'; variantColor?: 'default' | 'primary' | 'secondary' | ThemeName; variant?: 'H1' | 'H2' | 'H3' | 'H4' | 'H5' | 'H6' | 'subtitle1' | 'subtitle2' | 'body1' | 'body2' | 'button' | 'caption' | 'overline'; bold?: TextStyle['fontWeight']; size?: TextStyle['fontSize']; center?: boolean; }; declare const Text: React.NamedExoticComponent; export default Text; //# sourceMappingURL=Text.d.ts.map