export declare class ExtendedTimer {
    private readonly callback;
    private interval;
    private timeout;
    constructor(callback: () => void, interval?: number);
    get isActive(): boolean;
    changeInterval(newInterval: number): void;
    start(): void;
    restart(): void;
    stop(): void;
}
//# sourceMappingURL=timer.d.ts.map