export default class TimeView extends React.Component<any, any, any> {
    constructor(props: any);
    constraints: {};
    renderCounter(type: any, value: any): JSX.Element;
    renderHeader(): JSX.Element;
    onStartClicking(e: any, action: any, type: any): void;
    timer: number;
    increaseTimer: number;
    mouseUpListener: any;
    toggleDayPart(): void;
    increase(type: any): string;
    decrease(type: any): string;
    getCounters(): string[];
    isAMPM(): boolean;
    getTimeParts(date: any): {
        hours: string;
        minutes: string;
        seconds: string;
        milliseconds: string;
        ampm: string;
    };
}
import React from "react";
