import type { TimerVariant } from './shared'; export default class PingTimer { private keepalive; private timerId; private timer; private checkPing; private destroyed; constructor(keepalive: number, checkPing: () => void, variant: TimerVariant); private clear; destroy(): void; reschedule(): void; }