import * as React from 'react'; export interface TimeProps { format?: 'string'; style?: 'object'; } export default class Time extends React.PureComponent { props: any; state: { time: any; Timer: any; }; setState: any; constructor(props: any); timeChange: () => void; componentDidMount(): void; componentWillUnmount(): void; componentWillReceiveProps(nextProps: any): void; render(): JSX.Element; }