type Query = `(min-width: ${number}px)` | `(max-width: ${number}px)` | `(min-width: ${number}px) and (max-width: ${number}px)`; /** * Hook to track media query state * @param query - The media query string (e.g., "(min-width: 1024px)") * @returns boolean indicating if the media query matches */ export declare const useMediaQuery: (query: Query) => boolean; export {}; //# sourceMappingURL=useMediaQuery.d.ts.map