import { FunctionComponent } from 'react'; export type TimerProps = { color: string; devalueTime: Date; textColor?: string; }; declare const Timer: FunctionComponent; export default Timer;