import type { StyleProp, ViewStyle } from 'react-native'; export interface StyleProps { style?: | StyleProp | Array> | { [key: string]: string | number | React.FC } | any; } export type Style = StyleProp | Array>;