import { ImageStyle, StyleProp, TextStyle, ViewStyle } from 'react-native' export interface ICartTimerStyles { rootContainer?: StyleProp contentContainer?: StyleProp textsContainer?: StyleProp icon?: StyleProp message?: StyleProp time?: StyleProp } export interface ICartTimerTexts { message?: string } export interface ICartTimerProps { styles?: ICartTimerStyles texts?: ICartTimerTexts // Determine if the timer should minimize when user taps on it shouldNotMinimize?: boolean secondsLeft: number }