declare const RESETTED_BREAKPOINTS: {
    isMobile: boolean;
    isTablet: boolean;
    isDesktop: boolean;
    isTabletS: boolean;
    isTabletL: boolean;
    isDesktopS: boolean;
    isDesktopM: boolean;
    isDesktopL: boolean;
};
declare function useBreakpoint(): {
    breakpoints: {
        isMobile: boolean;
        isTablet: boolean;
        isDesktop: boolean;
        isTabletS: boolean;
        isTabletL: boolean;
        isDesktopS: boolean;
        isDesktopM: boolean;
        isDesktopL: boolean;
    };
    width: number;
};
export { useBreakpoint as default, RESETTED_BREAKPOINTS };
