import { TFunction } from '../../async/index.js';
export type TTimerEvent = {
    error: (err: Error) => void;
};
export type TTimer = {
    timer: NodeJS.Timeout;
    periodic: boolean;
    fn: TFunction;
};
//# sourceMappingURL=timer.d.ts.map