/** * Namespace prefix used for all kit-global CSS classes, layers and data attributes. * Matches the design-system name (`@aurora-ds`) so every global selector is * self-describing and easy to grep/replace. */ export declare const PREFIX = "aurora"; /** Class applied to an ancestor to opt a subtree into the light theme. */ export declare const THEME_LIGHT_CLASS = "aurora-theme-light"; /** Class applied to an ancestor to opt a subtree into the dark theme. */ export declare const THEME_DARK_CLASS = "aurora-theme-dark"; /** Attribute used while the provider is transitioning between color schemes. */ export declare const THEME_TRANSITION_ATTRIBUTE = "data-theme-transition"; /** CSS variable carrying the active theme transition duration. */ export declare const THEME_TRANSITION_DURATION_VAR = "--aurora-theme-transition-duration"; /** CSS cascade layer that carries the design-token variables. */ export declare const THEME_LAYER = "aurora.theme"; /** CSS cascade layer that carries the kit's global reset / base styles. */ export declare const RESET_LAYER = "aurora.reset";