import type { OnIsActiveChangedHandler, TimerHandle } from "../types"; export declare type ActivationOptions = { onIsActiveChanged: OnIsActiveChangedHandler; }; export declare class Activation { isActive: boolean; onIsActiveChanged: OnIsActiveChangedHandler; timers: TimerHandle[]; constructor(options: ActivationOptions); activate(): void; deactivate(): void; toggleActivation(): void; clearTimers(): void; clearTimer(timerName: string): void; } //# sourceMappingURL=Activation.d.ts.map