interface BreakpointsReturn { /** < 576px */ isSmallMobile: boolean; /** < 768px */ isMobile: boolean; /** >= 768px && < 1024px */ isTablet: boolean; /** >= 1024px */ isDesktop: boolean; /** >= 1280px */ isLargeDesktop: boolean; } export declare function useBreakpoints(): BreakpointsReturn; export {};