export interface Widths { bigScreen: number; laptopMaxWidth: number; mobileLandscape: number; tabletMaxWidth: number; tabletMinWidthLandscape: number; tabletMinWidthPortrait: number; } export declare const useMediaQueries: () => { isBigScreen: boolean; isDesktop: boolean; isDesktopOrLaptop: boolean; isLandscape: boolean; isLaptop: boolean; isMobile: boolean; isMobileLandscape: boolean; isMobilePortrait: boolean; isPortrait: boolean; isRetina: boolean; isTablet: boolean; isTabletLandscape: boolean; isTabletLandscapeAtLeast: boolean; isTabletPortrait: boolean; };