/** * A hook that tracks whether a CSS media query matches. * Returns false during SSR for consistent rendering. * @param query CSS media query string * @returns boolean indicating if the media query matches */ export declare function useMediaQuery(query: string): boolean;