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; shouldNotMinimize?: boolean; secondsLeft: number; } //# sourceMappingURL=types.d.ts.map