import { Theme } from '../css/types'; export declare const useMediaQuery: (query: string) => boolean; export declare const useBreakpoint: (breakpoint: keyof Theme["breakpoints"]) => boolean; export declare const useResponsiveValue: (values: { [key in keyof Theme["breakpoints"]]?: T; } & { default: T; }) => T;