/** * Enum represents the different viewports of different devices. * @readonly * @enum {string} * @property {string} mobileS - the viewport of a small mobile device. * @property {string} mobileM - the viewport of a medium mobile device. * @property {string} mobileL - the viewport of a large mobile device. * @property {string} tablet - the viewport of a tablet. * @property {string} laptop - the viewport of a normal laptop. * @property {string} laptopL - the viewport of a large laptop. * @property {string} desktop - the viewport of a desktop. */ export declare const mediaBounding: Readonly<{ mobileS: "320px"; mobileM: "375px"; mobileL: "425px"; tablet: "768px"; laptop: "1024px"; laptopL: "1440px"; desktop: "2560px"; }>; /** * Enum represents the different mediaQueries avaiable. * @readonly * @enum {string} * @property {string} min - the minimum sizes. * @property {string} max - the maximum sizes. */ export declare const mediaQuery: Readonly<{ min: { mobileS: string; mobileM: string; mobileL: string; tablet: string; laptop: string; laptopL: string; desktop: string; desktopL: string; }; max: { mobileS: string; mobileM: string; mobileL: string; tablet: string; laptop: string; laptopL: string; desktop: string; desktopL: string; }; }>;