import { ColorValue, StyleProp, TextStyle, ViewStyle } from 'react-native' export interface IDatePickerStyles { container?: StyleProp inputContainer?: StyleProp fieldWrapper?: StyleProp input?: StyleProp error?: StyleProp errorColor?: ColorValue baseColor?: string } export interface IDatePickerProps { onSelectDate: (date: Date) => void onCancel?: () => void text: string selectedDate?: Date styles?: IDatePickerStyles error?: string placeholder?: string }