/** * Hook to check if a media query matches * @param query - Media query to check * @returns Whether the media query matches, or undefined during SSR/initial render */ export declare function useMediaQuery(query: string): boolean | undefined; /** * Predefined breakpoints for common screen sizes */ export declare const breakpoints: { md: string; lg: string; }; /** @deprecated Use useMdUp instead */ export declare function useSmUp(): boolean | undefined; export declare function useMdUp(): boolean | undefined; export declare function useLgUp(): boolean | undefined; //# sourceMappingURL=use-media-query.d.ts.map