declare global { interface Window { _$delayHydration: Promise; } } export type Mode = 'init' | 'mount' | 'manual' | false; export type EventTypes = 'mousemove' | 'scroll' | 'wheel' | 'keydown' | 'click' | 'touchstart' | string;