/** * Hook to detect if the viewport matches a media query * * @param query - Media query string (e.g., "(max-width: 1200px)") * @returns boolean indicating if the media query matches * * @example * ```tsx * const isMobile = useMediaQuery('(max-width: 1200px)'); * ``` */ export declare function useMediaQuery(query: string): boolean; //# sourceMappingURL=useMediaQuery.d.ts.map