declare class StopWatch {
    private timeStart?;
    start(): void;
    stop(): number;
}
export default StopWatch;
