export default class Timer { constructor(onTick: any); onTick_: any; cancelPending_: () => void; tickAfter(delayInSeconds: any, callback?: any): Timer; tickEvery(seconds: any): void; stop(): void; }