/** * A hook that evaluates a CSS-media-style query against the current window width. * * Supported syntaxes: * - Named breakpoints: `"sm"`, `"md"`, etc. → true when width >= breakpoint * - min-width queries: `"(min-width: 600px)"` → true when width >= 600 * - max-width queries: `"(max-width: 899px)"` → true when width <= 899 * * @example * const isMd = useMediaQuery('md'); * const isWide = useMediaQuery('(min-width: 900px)'); */ declare function useMediaQuery(query: string): boolean; export { useMediaQuery }; //# sourceMappingURL=useMediaQuery.d.ts.map