/** * The canonical layer-order declaration for the Overdrive design system. * * Import this constant and call `globalLayer(LAYER_ORDER)` at the top of * any `.css.ts` file that uses cascade layers. This guarantees the * `@layer` order declaration is emitted *inside that file's CSS output*, * so the ordering is correct regardless of how the bundler chunks and * loads the files. */ export declare const LAYER_ORDER = "ag, reset, theme, styleprops, component, util"; export declare const cssLayerReset: string; export declare const cssLayerTheme: string; export declare const cssColorSet: string; export declare const cssLayerTypography: string; export declare const cssLayerStyleprops: string; export declare const cssLayerComponent: string; export declare const cssLayerUtil: string; /** * Map of CSS layer names to their corresponding layer objects */ export declare const cssLayerMap: { readonly reset: string; readonly theme: string; readonly colorset: string; readonly typography: string; readonly styleprops: string; readonly component: string; readonly util: string; }; export type CSSLayers = keyof typeof cssLayerMap; //# sourceMappingURL=layers.css.d.ts.map