import React from 'react'; interface TimerProps { time: number; timerFormat: string; style?: any; isPaused?: boolean; addCount: (value: any) => void; } declare function Timer({ style, timerFormat, time, isPaused, addCount, }: TimerProps): React.JSX.Element; export default Timer;