export default class PingTimer {
    private keepalive;
    private timer;
    private checkPing;
    constructor(keepalive: number, checkPing: () => void);
    clear(): void;
    reschedule(): void;
}
