import type { ImageStyle, TextStyle, ViewStyle, FlexAlignType, DimensionValue } from 'react-native'; import type { SelectorGroup } from './css.types'; export type AnyStyle = ImageStyle | TextStyle | ViewStyle; export interface GetChildStylesArgs { isFirstChild: boolean; isLastChild: boolean; isEven: boolean; isOdd: boolean; } export type PartialStyle = ImageStyle | TextStyle | ViewStyle; export type FinalSheet = Record; export interface CompleteStyle extends ViewStyle, TextStyle, Omit { } export type { FlexAlignType, DimensionValue };