/** * Hook to add event listeners to the window object. * Automatically cleans up on unmount or when dependencies change. * * @param events Event or array of events to listen for * @param callback Event handler function * @param options Options to pass to addEventListener */ export default function useWindowListener(events: string | readonly string[], callback: (e: Event) => void, options?: boolean | AddEventListenerOptions): void; //# sourceMappingURL=useWindowListener.d.ts.map