import type { StyleProp, TextStyle } from 'react-native'; import type { ThemableTextStyle } from 'src/theme/themeTypes'; import type themeType from '../theme/theme'; declare const createTextStyle: ({ fontFamily, fontSize, fontWeight, lineHeight, letterSpacing, ...otherProps }: ThemableTextStyle, themeObject: T) => StyleProp; export default createTextStyle;