import { type StyleProp, type TextStyle } from 'react-native'; type NumericFontWeight = 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900; type ConvertedFontWeightType = Exclude | `${NumericFontWeight}`; export declare function convertTextStyleToRNTextStyle>(style: StyleProp): (Omit & { fontWeight?: ConvertedFontWeightType; }) | undefined; export type BasicTextStyle = Pick; export {}; //# sourceMappingURL=font.d.ts.map