/** * * @param query A valid CSS media query string (e.g., '(min-width: 762px)'). * @returns true if the current document state matches the media query */ declare const useMediaQuery: (query: string) => boolean; export default useMediaQuery;