type TimerType = "timeout" | "interval"; type TimerId = ReturnType | ReturnType; /** * Internal helper to create managed timers with automatic cleanup * @param fn - Function to execute * @param delay - Delay/interval in milliseconds * @param type - Timer type (timeout or interval) * @returns Timer ID */ export declare const createManagedTimer: (fn: () => void, delay: number, type: TimerType) => TimerId; export {}; //# sourceMappingURL=createManagedTimer.d.ts.map