/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /// import Component from '../../react-class'; export default class Clock extends Component { constructor(props: any); shouldRun(props: any): boolean; componentDidMount(): void; componentDidUpdate: (prevProps: any) => void; start(): void; stop(): void; run(): void; update(): void; setSeconds(seconds: any): void; setTime(time: any): void; getPropsTime(): any; getPropsSeconds(): any; getSeconds(): any; getTime(): any; render(): JSX.Element; renderCenter(): JSX.Element; renderCenterOverlay(): JSX.Element; onResize({ width, height }: { width: any; height: any; }): void; renderSecondHand(value: any): any; renderMinuteHand(value: any): any; renderHourHand(value: any): any; renderHand(name: any, value: any): any; renderTick(tick: any): any; }