/** * Declarative container tokens (mobile-first). * * Each entry maps a token key to a breakpoint map. `_` is the default; * any other key must exist in tokens/primitives/breakpoints.js. * * Values are ported from the legacy `containers.js` plugin. The `xl` bucket * used to be wrapped in `@media (max-width: xl)` — orphan / never matched * cleanly — and was corrected to `min-width` here. */ export const containersData: { px: { _: string; sm: string; xl: string; }; py: { _: string; sm: string; xl: string; }; 'max-width': { _: string; sm: string; xl: string; }; }; declare namespace _default { export { containersData }; } export default _default; //# sourceMappingURL=containers.data.d.ts.map