/** * Custom hook for managing timers with automatic cleanup * @returns Object with set and clear methods for timer control */ export declare function useTimer(): { set: (callback: () => void, delay: number) => void; clear: () => void; }; //# sourceMappingURL=useTimer.d.ts.map