/** * Tracks whether a CSS media query currently matches, updating on change. * * SSR-safe: returns false when there is no `window`. Subscribes to the query's * change event and cleans up on unmount or when the query string changes. * @param {string} query - A media query string (e.g. `'(max-width: 768px)'`). * @returns {boolean} True while the query matches. */ export declare const useMediaQuery: (query: string) => boolean; //# sourceMappingURL=useMediaQuery.d.ts.map