import { ReactNode } from 'react'; import { StyleProp, TextStyle } from 'react-native'; export default function ({ children, size, style, fontWeight, onBrand, }: { children: ReactNode; size?: 'sm' | 'md' | 'lg' | 'xl'; fontWeight?: 'normal' | 'bold' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; style?: StyleProp; onBrand?: boolean; }): JSX.Element;