export type TimerConfig = { seconds: number; callback: () => void; }; export declare class Timer { private _endTime; private readonly _seconds; private readonly _callback; constructor({ seconds, callback }: TimerConfig); start(): void; stop(): void; private _timeOutSystemHandle; }