import { TimerEventType } from "./TimerEventType";
export declare class TimerEvent {
id: string;
description: string;
type: TimerEventType;
constructor(id: string, description: string, type: TimerEventType);
equals(o: any): boolean;
getHashCode(): string;
toString(): string;
}