import React from 'react'; interface TimerValueProps { timerId: number; version: number; duration: number; timerStartDateT: string; status: number; onCreation: () => void; } interface TimerStopwatchProps { style?: any; defaultValue?: TimerValueProps; objectState?: any; } declare const TimerStopwatch: ({ style, defaultValue, objectState, }: TimerStopwatchProps) => React.JSX.Element; export default TimerStopwatch;