import * as React from "react"; import { TextStyle, StyleProp, ViewStyle } from "react-native"; import moment from "moment"; interface CountdownProps { end: moment.Moment; start: moment.Moment; format?: string; defaultCountdown?: string; style?: StyleProp; textStyle?: StyleProp; onCountdownOver?: () => void; } declare const Countdown: React.FC; export default Countdown;