declare const timer: { setTimeout: typeof setTimeout; clearTimeout: typeof clearTimeout; setInterval: typeof setInterval; clearInterval: typeof clearInterval; } | { setTimeout: (callback: any, timeout: any) => number; clearTimeout: (id: any) => void; setInterval: (callback: any, timeout: any) => number; clearInterval: (id: any) => void; }; export default timer; //# sourceMappingURL=timer.d.ts.map