/** * Mobile detection utility * * Uses CSS media query via matchMedia for reliable detection: * - `pointer: coarse` identifies touch-primary devices (not laptops with touchscreens) * - Breakpoint is evaluated by the browser, always in sync with CSS * - Called on each use (not cached), so it responds to viewport changes and rotation */ /** * Detect mobile touch devices. * Returns true when the primary pointer is coarse (touch) AND viewport is narrow. */ export declare function isMobileTouch(breakpoint?: number): boolean; //# sourceMappingURL=mobile.d.ts.map