export declare const breakpoints: {
    up: {
        mobile: string;
        tablet: string;
        desktop: string;
    };
    down: {
        mobile: string;
        tablet: string;
        desktop: string;
    };
};
export declare const useMediaQuery: (query: string) => boolean;
