/** * Notice! Do not edit this manually. * This file is autogenerated by `yarn generate:tokens` */ export declare const MEDIA_QUERIES: Readonly<{ readonly landscape: "aspect-ratio >= 1/1"; readonly portrait: "aspect-ratio <= 1/1"; readonly widescreen: "width >= 1600px"; readonly desktop: "width >= 1200px"; readonly desktopMax: "width <= 1599px"; readonly tablet: "width >= 768px"; readonly tabletMax: "width <= 1199px"; readonly mobile: "width >= 540px"; readonly mobileMax: "width <= 767px"; }>; export type MediaQuery = keyof typeof MEDIA_QUERIES;