declare const mobileS = 320; declare const mobileM = 375; declare const mobileL = 425; declare const tablet = 768; declare const laptop = 1024; declare const laptopL = 1440; declare const desktop = 2560; declare const device: { mobileS: string; mobileM: string; mobileL: string; tablet: string; laptop: string; laptopL: string; desktop: string; desktopL: string; }; export { device, mobileS, mobileM, mobileL, tablet, laptop, laptopL, desktop };