import { StyleProp, ViewStyle, TextProps } from 'react-native'; export interface DayProps { createdAt: Date | number; dateFormat?: string; dateFormatCalendar?: object; containerStyle?: StyleProp; wrapperStyle?: StyleProp; /** Props to pass to the Text component (e.g., style, allowFontScaling, numberOfLines) */ textProps?: Partial; /** * `true` when rendered as the floating/animated day header that sticks to the * top while scrolling, `false`/`undefined` for the inline day separators. * Use this in a custom `renderDay` to give the floating header a different look. */ isAnimated?: boolean; } //# sourceMappingURL=types.d.ts.map