/** * Viewport Utilities */ import type { BreakpointName, Breakpoint } from '../../api/index.js'; export declare const BREAKPOINTS: Record; export declare class ViewportUtils { static getCurrentBreakpoint(): BreakpointName; static matchesBreakpoint(breakpoint: BreakpointName): boolean; static isMinBreakpoint(breakpoint: BreakpointName): boolean; static getDimensions(): { width: number; height: number; }; static isTouchDevice(): boolean; } //# sourceMappingURL=viewport-utils.d.ts.map