import { PlatformOSType } from 'react-native'; export type Units = { '%'?: number; vw?: number; vh?: number; vmin?: number; vmax?: number; em: number; rem: number; px: number; pt: number; pc: number; in: number; cm: number; mm: number; }; export type StyledContext = { orientation: 'portrait' | 'landscape'; resolution: number; fontScale: number; deviceWidth: number; deviceHeight: number; deviceAspectRatio: number; platform: PlatformOSType; colorScheme: 'dark' | 'light'; units: Units; };