PlumaProvider


PlumaProvider provides context to all Pluma components. More specifically, it:

  • Provides a theme context
  • Adds the theme's CSS variables
  • Imports and adds icon sprites
  • Provides additional global or component-specific flags

It is required to render PlumaProvider at the root of your app.

Theming

A theme object provides all the tokens and styles for a theme. It can be passed to PlumaProvider as the theme prop:

import { defaultTheme } from '@customerio/pluma-components/css';

export function App() {
	return <PlumaProvider theme={defaultTheme}>...</PlumaProvider>;
}

The theme object must implement the PlumaTheme or PartialPlumaTheme type, both of which are based on the token output generated from our base tokens.

PlumaProvider will render a div element and attach the theme's class name to it, which adds all the theme's CSS variables to that container.

If you need to add additional classes to that element, add them to PlumaProvider, which will forward them to the div:

<PlumaProvider theme={defaultTheme} className="my-app-root-class">
	...
</PlumaProvider>

If you don't need to render the theme container - for example, when using Pluma Components inside a microfrontend where the root app already has a theme - you can prevent PlumaProvider from rendering it with the shouldRenderContainer argument:

<PlumaProvider theme={inheritedTheme} shouldRenderContainer={false}>
	...
</PlumaProvider>

Note that it is still recommended to provide a theme, even to a PlumaProvider within a nested microfrontend. You should retrieve the theme from the root app and pass it into the microfrontends, in case any code or component needs to access the theme's variables via context.

Color scheme

In addition to the explicit theme prop, PlumaProvider accepts a colorScheme prop that picks between light and dark tokens at runtime. It accepts:

  • 'light' (default) — apply the light tokens.
  • 'dark' — apply the dark tokens.
  • 'auto' — follow the user's system preference via prefers-color-scheme. The Provider listens for changes and updates dynamically.

To use colorScheme you also pass themes — an object with light and/or dark theme objects. The Provider picks the matching one based on the resolved scheme:

import { lightTheme, darkTheme } from '@customerio/pluma-components/css';

export function App() {
	return (
		<PlumaProvider
			colorScheme="auto"
			themes={{ light: lightTheme, dark: darkTheme }}
		>
			...
		</PlumaProvider>
	);
}
<PlumaProvider
	@colorScheme='auto'
	@themes={{hash light=this.lightTheme dark=this.darkTheme}}
>
	...
</PlumaProvider>

themes is consumer-supplied so callers that always pass their own theme don't pull the canonical light/dark theme CSS into their bundle. Import the canonical themes from @customerio/pluma-components/css if you want the standard light/dark behavior.

When the theme prop is provided, colorScheme and themes are ignored — theme always wins as an explicit override.

Reading the current scheme

Three contexts are exposed for descendants:

  • PlumaThemeContext (usePlumaTheme() in React, @consume(PlumaThemeContext) in Ember) — the effective theme object.
  • PlumaColorSchemeContext (usePlumaColorScheme() / @consume(PlumaColorSchemeContext)) — the resolved scheme, always 'light' or 'dark'. When colorScheme is 'auto', this is the system-resolved value. Use this for conditional logic that needs a concrete scheme.
  • PlumaColorSchemePreferenceContext (usePlumaColorSchemePreference() / @consume(PlumaColorSchemePreferenceContext)) — the unresolved preference ('auto' | 'light' | 'dark'). Used by components like Image that need to decide whether to swap variants via prefers-color-scheme media queries (auto) or by filtering upfront (explicit).

Nested Providers

themes propagates through context, so a nested PlumaProvider can specify only colorScheme and resolve against an ancestor's themes:

<PlumaProvider colorScheme="auto" themes={{ light: lightTheme, dark: darkTheme }}>
	{/* follows the user's system preference */}
	<Outlet />

	<PlumaProvider colorScheme="dark">
		{/* forced to dark, resolved against the ancestor's `themes.dark` */}
		<DarkOnlyArea />
	</PlumaProvider>
</PlumaProvider>

When a nested PlumaProvider has colorScheme (and themes are in scope, own or inherited), the matching variant wins over a theme inherited from PlumaThemeContext. To extend the inherited themes — overriding e.g. only dark — pass a partial themes object: it's merged over the inherited one, so the unaltered variants stay accessible.

Icons

If you're planning to use the Icon component, you'll need to pass in an IconManager instance. The IconManager class comes from the @customerio/pluma-icons package.

import { defaultTheme } from '@customerio/pluma-components/css';
import { IconManager } from '@customerio/pluma-icons';

// Instantiate the IconManager
const iconManager = new IconManager();

export function App() {
	return <PlumaProvider theme={defaultTheme} iconManager={iconManager}>...</PlumaProvider>;
}

An IconManager is responsible for importing the icon SVG sprite sheet, and attaching it to the document body. When PlumaProvider receives an IconManager, PlumaProvider will instruct IconManager to load and attach the sprites when the app first renders.

The sprites only get loaded and attached when PlumaProvider renders, so it's safe to instantiate the IconManager instance outside of components or effects. Additionally, a single IconManager instance will only attach sprites once, even if called multiple times.

In microfrontends, only the root app needs to provide an IconManager. The sprites are attached to the document body, and are then available globally, to all embedded microfrontends.

Similar to the theme object, it is recommended to pass in the IconManager instance from the root app's context into the microfrontend PlumaProvider, in case any components need to reference the IconManager.

Client side routing

Pluma includes link components such as PlainLink and Link, which may perform navigation events. By default, those components render plain a tags, which would use the browser's native navigation, which cause a full page reload.

In a single page application, there is typically a routing library which takes over linking and issues navigation events internally, without refreshing the whole page. While Pluma itself is agnostic towards what an app's routing setup is, it allows customizing the link component, so that consuming apps may still navigate correctly.

A custom component can be defined on PlumaProvider through the linkComponent prop.

There are a few basic requirements the component must adhere to in order to work correctly:

  • it must implement the LinkComponent type
    • in React: import type { LinkComponent } from '@customerio/pluma-components/react';
    • in Ember: import type { PlumaLinkComponent, PlumaLinkComponentSignature } from '@customerio/pluma-components/ember';
  • in React, the component must use forwardRef
  • by implementing the type, the component must accept at least these two arguments:
    • href - a string, the target URL for the router navigation
    • replace - a boolean, which indicates that the transition should replaceState rather than pushState
  • it's recommended the component render a regular a tag, and not a Box component, as Pluma already wraps the component in Boxes internally

In React with React Router, this setup might look like:


import { forwardRef } from "react";
import { Link as ReactRouterLink, Outlet } from 'react-router-dom';
import { PlumaProvider } from '@customerio/pluma-components/react';
import type { LinkComponent } from '@customerio/pluma-components/react';

const LinkDefinition = forwardRef(function(props, ref) {
	const { href, replace, ...restProps } = props;
	return <ReactRouterLink to={href} replace={replace} {...restProps} ref={ref} />;
}) as LinkComponent;

export function App() {
	return (
		<PlumaProvider linkComponent={LinkDefinition}>
			<Outlet />
		</PlumaProvider>
	);
}

In Ember, it might look like:

// app/components/link-definition.ts
import Component from '@glimmer/component';
import { service } from '@ember/service';
import RouterService from '@ember/routing/router-service';
import type { PlumaLinkComponentSignature } from '@customerio/pluma-components/ember';

export default class LinkDefinition extends Component<PlumaLinkComponentSignature> {
	@service('router') router!: RouterService;

	onClick = (event: MouseEvent) => {
		event.preventDefault();
		const targetHref = event.currentTarget.href.replace(window.location.origin, '');
		this.router.transitionTo(targetHref);
	}
}
{{!-- app/components/link-definition.hbs  --}}
<a ...attributes href={{@href}} {{on "click" this.onClick}}>{{yield}}</a>
// app/controllers/application.ts
import Controller from '@ember/controller';
import LinkDefinition from 'my-app/components/link-definition';

export default class ApplicationController extends Controller {
	LinkDefinition = LinkDefinition;
}
{{!-- app/templates/application.hbs  --}}
<PlumaProvider @linkComponent={{this.LinkDefinition}}>
	{{outlet}}
</PlumaProvider>

Note: In Ember apps, we typically use the LinkTo component for router links. That component accepts arguments like @model and @route instead of a @href string, which is different from what we require for Pluma's link component.

Our recommendation is to use an addon like ember-link or a custom helper to generate the href string. Invoking a PlumaLink component might then look like:

<PlumaLink
	@href={{route-href
		route="campaigns.campaign"
		model=this.model.id
	}}
>
	View campaign
</PlumaLink>

While the helper might be:

import Helper from '@ember/component/helper';
import { inject as service } from '@ember/service';
import type RouterService from '@ember/routing/router-service';

export default class extends Helper {
	@service router!: RouterService;

	compute(_, { route, model }) {
		return this.router.urlFor(route, model);
	}
}

Component config

Certain components may expose a set of default or configuration props that can be set from the PlumaProvider level. For example, the Snackbar component's close timeout can be modified like this.

PlumaProvider accepts a componentConfig prop, which is an object with component names for keys. Please refer to the individual component docs for more information on what configuration is available.

Component flags

These flags may be used by specific components to alter their behavior. Certain components can behave or render differently based on these flags. These are all the currently available flags:

  • unsafe_useLegacyButton
  • unsafe_useLegacyTextField
  • unsafe_useLegacyTextArea
  • unsafe_useLegacySelect
  • unsafe_useLegacyLink

API

Which color scheme to apply.

  • 'light' (default): apply the light tokens.
  • 'dark': apply the dark tokens.
  • 'auto': detect the user's system preference via @media (prefers-color-scheme: dark) and apply light or dark tokens accordingly. The Provider listens for changes and updates dynamically.

Ignored when theme is provided — theme always wins.

componentConfig  DeepPartial<{ PlumaButton?: { unsafe_withSoftDeprecatedSecondaryVariant?: boolean | undefined; unsafe_withMigratedButtonVariants?: boolean | undefined; } | undefined; PlumaModal?: (BaseModalProviderProps & { animationTransitionDuration?: number | undefined; }) | undefined; PlumaDrawer?: { animationTransitionDuration?: number | undefined; } | undefined; PlumaPopover?: { floatingPluginOptions?: { click?: { enabled?: boolean | undefined; event?: "click" | "mousedown" | undefined; toggle?: boolean | undefined; ignoreMouse?: boolean | undefined; keyboardHandlers?: boolean | undefined; } | undefined; hover?: { enabled?: boolean | undefined; mouseOnly?: boolean | undefined; delay?: number | Partial<{ open: number; close: number; }> | undefined; restMs?: number | undefined; move?: boolean | undefined; handleClose?: any; } | undefined; focus?: { enabled?: boolean | undefined; visibleOnly?: boolean | undefined; } | undefined; dismiss?: { enabled?: boolean | undefined; escapeKey?: boolean | undefined; referencePress?: boolean | undefined; referencePressEvent?: "click" | "mousedown" | "pointerdown" | undefined; outsidePress?: boolean | ((event: MouseEvent) => boolean) | undefined; outsidePressEvent?: "click" | "mousedown" | "pointerdown" | undefined; ancestorScroll?: boolean | undefined; bubbles?: boolean | { escapeKey?: boolean | undefined; outsidePress?: boolean | undefined; } | undefined; capture?: boolean | { escapeKey?: boolean | undefined; outsidePress?: boolean | undefined; } | undefined; } | undefined; role?: { enabled?: boolean | undefined; role?: "grid" | "listbox" | "menu" | "tooltip" | "dialog" | "label" | "select" | "tree" | "alertdialog" | "combobox" | undefined; } | undefined; } | undefined; animationTransitionDuration?: number | undefined; } | undefined; PlumaDropdownMenu?: { floatingPluginOptions?: { click?: { enabled?: boolean | undefined; event?: "click" | "mousedown" | undefined; toggle?: boolean | undefined; ignoreMouse?: boolean | undefined; keyboardHandlers?: boolean | undefined; } | undefined; hover?: { enabled?: boolean | undefined; mouseOnly?: boolean | undefined; delay?: number | Partial<{ open: number; close: number; }> | undefined; restMs?: number | undefined; move?: boolean | undefined; handleClose?: any; } | undefined; focus?: { enabled?: boolean | undefined; visibleOnly?: boolean | undefined; } | undefined; dismiss?: { enabled?: boolean | undefined; escapeKey?: boolean | undefined; referencePress?: boolean | undefined; referencePressEvent?: "click" | "mousedown" | "pointerdown" | undefined; outsidePress?: boolean | ((event: MouseEvent) => boolean) | undefined; outsidePressEvent?: "click" | "mousedown" | "pointerdown" | undefined; ancestorScroll?: boolean | undefined; bubbles?: boolean | { escapeKey?: boolean | undefined; outsidePress?: boolean | undefined; } | undefined; capture?: boolean | { escapeKey?: boolean | undefined; outsidePress?: boolean | undefined; } | undefined; } | undefined; role?: { enabled?: boolean | undefined; role?: "grid" | "listbox" | "menu" | "tooltip" | "dialog" | "label" | "select" | "tree" | "alertdialog" | "combobox" | undefined; } | undefined; } | undefined; animationTransitionDuration?: number | undefined; } | undefined; PlumaSelect?: { menuAnimationTransitionDuration?: number | undefined; } | undefined; PlumaSnackbar?: { snackbarApi?: IPlumaSnackbarApi | undefined; autoCloseTimeout?: number | undefined; animationTransitionDuration?: number | undefined; } | undefined; PlumaTooltip?: { floatingPluginOptions?: { hover?: { enabled?: boolean | undefined; mouseOnly?: boolean | undefined; delay?: number | Partial<{ open: number; close: number; }> | undefined; restMs?: number | undefined; move?: boolean | undefined; handleClose?: any; } | undefined; focus?: { enabled?: boolean | undefined; visibleOnly?: boolean | undefined; } | undefined; dismiss?: { enabled?: boolean | undefined; escapeKey?: boolean | undefined; referencePress?: boolean | undefined; referencePressEvent?: "click" | "mousedown" | "pointerdown" | undefined; outsidePress?: boolean | ((event: MouseEvent) => boolean) | undefined; outsidePressEvent?: "click" | "mousedown" | "pointerdown" | undefined; ancestorScroll?: boolean | undefined; bubbles?: boolean | { escapeKey?: boolean | undefined; outsidePress?: boolean | undefined; } | undefined; capture?: boolean | { escapeKey?: boolean | undefined; outsidePress?: boolean | undefined; } | undefined; } | undefined; role?: { enabled?: boolean | undefined; role?: "grid" | "listbox" | "menu" | "tooltip" | "dialog" | "label" | "select" | "tree" | "alertdialog" | "combobox" | undefined; } | undefined; } | undefined; animationTransitionDuration?: number | undefined; } | undefined; PlumaIcon?: { defaultSizeVersion?: "v1" | "v2" | undefined; iconNameOverrides?: Partial<Record<IconName, IconName>> | undefined; } | undefined; PlumaCodeBlock?: (Pick<BaseCodeBlockProps, "mode" | "lightTheme" | "darkTheme"> & { shouldMatchColorScheme?: boolean | undefined; }) | undefined; }> | undefined

Component-specific default props or configuration to apply universally

An instance of a GlobalThemeManager, which manages global theme state and variables

By default, global variables will live in a <style> element just under the PlumaProvider. If a different container is specified, the the <style> element will be portaled into that container instead.

An instance of an IconManager, which attaches the icon sprites

Whether the ScrollbarProvider should be disabled, preventing it from measuring scrollbar widths.

The component that will be used for Link and PlainLink

Whether an "isolation: isolate" CSS class should be applied to the theme container

Whether the provider should override global variables if provided theme version is newer than the current global theme version.

Whether the theme container div (with theme class name) should be rendered

The theme to apply to the provider

The root element to set theme attributes on. Can be a CSS selector string, an HTMLElement, or a function returning an HTMLElement. Defaults to document.documentElement.

themes  { light?: { name: string; tokens: { ai: { "fill-mix-amount": number; "ring-stop-mix-amount-01": number; "ring-stop-mix-amount-02": number; "ring-stop-mix-amount-03": number; }; color: { "ai-fill-stop-01": string; "ai-fill-stop-02": string; "ai-fill-surface": string; "ai-ring-fade": string; "ai-ring-gap": string; "ai-ring-stop-01": string; "ai-ring-stop-02": string; "ai-ring-stop-03": string; "background-default": string; "banner-caution-background": string; "banner-caution-border": string; "banner-default-background": string; "banner-default-border": string; "banner-error-background": string; "banner-error-border": string; "banner-feature-background": string; "banner-feature-border": string; "banner-information-background": string; "banner-information-border": string; "banner-success-background": string; "banner-success-border": string; "banner-warning-background": string; "border-accent": string; "border-accent-disabled": string; "border-accent-hover": string; "border-accent-minimal": string; "border-accent-subtle": string; "border-accent-subtle-hover": string; "border-active": string; "border-active-hover": string; "border-base": string; "border-base-hover": string; "border-bold": string; "border-bold-hover": string; "border-caution": string; "border-caution-disabled": string; "border-caution-hover": string; "border-caution-minimal": string; "border-caution-subtle": string; "border-caution-subtle-hover": string; "border-critical": string; "border-critical-disabled": string; "border-critical-hover": string; "border-critical-minimal": string; "border-critical-subtle": string; "border-critical-subtle-hover": string; "border-dropdown": string; "border-feature-border-information": string; "border-feature-border-information-disabled": string; "border-feature-border-information-hover": string; "border-feature-border-information-minimal": string; "border-feature-border-information-subtle": string; "border-feature-border-information-subtle-hover": string; "border-focus": string; "border-information": string; "border-information-disabled": string; "border-information-hover": string; "border-information-minimal": string; "border-information-subtle": string; "border-information-subtle-hover": string; "border-invert": string; "border-minimal": string; "border-minimal-hover": string; "border-success": string; "border-success-disabled": string; "border-success-hover": string; "border-success-minimal": string; "border-success-subtle": string; "border-success-subtle-hover": string; "button-surface-invert": string; "button-surface-invert-hover": string; "chart-base-1": string; "chart-base-2": string; "chart-base-3": string; "chart-base-4": string; "chart-positive-1": string; "chart-positive-2": string; "chart-positive-3": string; "chart-positive-4": string; "chart-secondary-1": string; "chart-secondary-2": string; "chart-secondary-3": string; "chart-secondary-4": string; "date_picker-background": string; "date_picker-background-hover": string; "date_picker-background-selected": string; "icon-accent": string; "icon-accent-disabled": string; "icon-accent-hover": string; "icon-accent-invert-disabled": string; "icon-base": string; "icon-base-disabled": string; "icon-base-hover": string; "icon-bold": string; "icon-button": string; "icon-caution": string; "icon-caution-disabled": string; "icon-critical": string; "icon-critical-disabled": string; "icon-critical-hover": string; "icon-critical-invert-disabled": string; "icon-feature": string; "icon-feature-disabled": string; "icon-information": string; "icon-information-disabled": string; "icon-invert": string; "icon-minimal": string; "icon-navigation": string; "icon-subtle": string; "icon-success": string; "icon-success-disabled": string; "icon-white": string; "label-blue-background": string; "label-blue-icon": string; "label-blue-text": string; "label-clementine-background": string; "label-clementine-icon": string; "label-clementine-text": string; "label-green-background": string; "label-green-icon": string; "label-green-text": string; "label-grey-background": string; "label-grey-icon": string; "label-grey-text": string; "label-plum-background": string; "label-plum-icon": string; "label-plum-text": string; "label-purple-background": string; "label-purple-icon": string; "label-purple-text": string; "label-raspberry-background": string; "label-raspberry-icon": string; "label-raspberry-text": string; "label-red-background": string; "label-red-icon": string; "label-red-text": string; "label-teal-background": string; "label-teal-icon": string; "label-teal-text": string; "label-yellow-background": string; "label-yellow-icon": string; "label-yellow-text": string; "navigation-background": string; "navigation-background-hover": string; "navigation-background-selected": string; "navigation-icon": string; "navigation-icon-collapsed": string; "navigation-icon-selected": string; "navigation-text": string; "navigation-text-selected": string; "snackbar-default-background": string; "snackbar-default-close-background-hover": string; "snackbar-error-background": string; "snackbar-error-close-background-hover": string; "snackbar-success-background": string; "snackbar-success-close-background-hover": string; "status-blue": string; "status-green": string; "status-purple": string; "status-red": string; "status-yellow": string; "surface-accent": string; "surface-accent-disabled": string; "surface-accent-hover": string; "surface-accent-minimal": string; "surface-accent-subtle": string; "surface-active": string; "surface-active-disabled": string; "surface-active-hover": string; "surface-base": string; "surface-base-disabled": string; "surface-base-hover": string; "surface-bold": string; "surface-bold-hover": string; "surface-caution": string; "surface-caution-bold": string; "surface-caution-disabled": string; "surface-caution-hover": string; "surface-caution-minimal": string; "surface-caution-subtle": string; "surface-caution-subtle-hover": string; "surface-critical": string; "surface-critical-bold": string; "surface-critical-disabled": string; "surface-critical-hover": string; "surface-critical-minimal": string; "surface-critical-subtle": string; "surface-critical-subtle-hover": string; "surface-information": string; "surface-information-bold": string; "surface-information-disabled": string; "surface-information-hover": string; "surface-information-minimal": string; "surface-information-subtle": string; "surface-information-subtle-hover": string; "surface-invert": string; "surface-invert-bold": string; "surface-invert-bold-hover": string; "surface-invert-hover": string; "surface-invert-subtle": string; "surface-subtle": string; "surface-subtle-disabled": string; "surface-subtle-hover": string; "surface-success": string; "surface-success-bold": string; "surface-success-disabled": string; "surface-success-hover": string; "surface-success-minimal": string; "surface-success-subtle": string; "surface-success-subtle-hover": string; "surface-workflow-data": string; "surface-workflow-delays": string; "surface-workflow-flowcontrol": string; "surface-workflow-messages": string; "text-accent": string; "text-accent-bold": string; "text-accent-disabled": string; "text-accent-hover": string; "text-accent-invert-disabled": string; "text-active": string; "text-base": string; "text-base-disabled": string; "text-base-hover": string; "text-bold": string; "text-bold-hover": string; "text-caution": string; "text-caution-bold": string; "text-caution-disabled": string; "text-caution-hover": string; "text-caution-subtle": string; "text-code": string; "text-critical": string; "text-critical-bold": string; "text-critical-disabled": string; "text-critical-hover": string; "text-critical-invert-disabled": string; "text-critical-subtle": string; "text-information": string; "text-information-bold": string; "text-information-disabled": string; "text-information-hover": string; "text-information-subtle": string; "text-invert": string; "text-minimal": string; "text-placeholder": string; "text-subtle": string; "text-success": string; "text-success-bold": string; "text-success-disabled": string; "text-success-hover": string; "text-success-subtle": string; "text-white": string; "toggle-surface-active": string; "toggle-surface-active-disabled": string; "toggle-surface-active-hover": string; "toggle-surface-base": string; "toggle-surface-base-disabled": string; "toggle-surface-base-hover": string; }; palette: { "blue_wave-025": string; "blue_wave-050": string; "blue_wave-100": string; "blue_wave-200": string; "blue_wave-300": string; "blue_wave-400": string; "blue_wave-500": string; "blue_wave-600": string; "blue_wave-700": string; "blue_wave-800": string; "blue_wave-900": string; "blue-050": string; "blue-100": string; "blue-200": string; "blue-300": string; "blue-400": string; "blue-500": string; "blue-600": string; "blue-700": string; "blue-800": string; "blue-900": string; "brand-forest": string; "brand-forest-dark": string; "brand-forest-light": string; "green_verdant-015": string; "green_verdant-025": string; "green_verdant-050": string; "green_verdant-100": string; "green_verdant-200": string; "green_verdant-300": string; "green_verdant-400": string; "green_verdant-500": string; "green_verdant-550": string; "green_verdant-600": string; "green_verdant-700": string; "green_verdant-800": string; "green_verdant-850": string; "green_verdant-900": string; "green-050": string; "green-100": string; "green-200": string; "green-300": string; "green-400": string; "green-500": string; "green-600": string; "green-700": string; "green-800": string; "green-900": string; "grey_charcoal-015": string; "grey_charcoal-025": string; "grey_charcoal-050": string; "grey_charcoal-100": string; "grey_charcoal-200": string; "grey_charcoal-250": string; "grey_charcoal-300": string; "grey_charcoal-350": string; "grey_charcoal-400": string; "grey_charcoal-500": string; "grey_charcoal-600": string; "grey_charcoal-650": string; "grey_charcoal-700": string; "grey_charcoal-750": string; "grey_charcoal-800": string; "grey_charcoal-850": string; "grey_charcoal-900": string; "grey_charcoal-black": string; "grey_charcoal-white": string; "grey_warm_charcoal-015": string; "grey_warm_charcoal-025": string; "grey_warm_charcoal-050": string; "grey_warm_charcoal-100": string; "grey_warm_charcoal-200": string; "grey_warm_charcoal-300": string; "grey_warm_charcoal-400": string; "grey_warm_charcoal-500": string; "grey_warm_charcoal-600": string; "grey_warm_charcoal-700": string; "grey_warm_charcoal-800": string; "grey_warm_charcoal-900": string; "grey_warm_charcoal-black": string; "grey_warm_charcoal-white": string; "grey-050": string; "grey-100": string; "grey-200": string; "grey-300": string; "grey-400": string; "grey-500": string; "grey-600": string; "grey-700": string; "grey-800": string; "grey-900": string; "grey-black": string; "grey-white": string; "orange_zest-025": string; "orange_zest-050": string; "orange_zest-100": string; "orange_zest-200": string; "orange_zest-300": string; "orange_zest-400": string; "orange_zest-500": string; "orange_zest-600": string; "orange_zest-700": string; "orange_zest-800": string; "orange_zest-900": string; "orange-050": string; "orange-100": string; "orange-200": string; "orange-300": string; "orange-400": string; "orange-500": string; "orange-600": string; "orange-700": string; "orange-800": string; "orange-900": string; "pink_blush-025": string; "pink_blush-050": string; "pink_blush-100": string; "pink_blush-200": string; "pink_blush-300": string; "pink_blush-400": string; "pink_blush-500": string; "pink_blush-600": string; "pink_blush-700": string; "pink_blush-800": string; "pink_blush-900": string; "plum-100": string; "plum-200": string; "plum-300": string; "plum-400": string; "plum-500": string; "plum-600": string; "plum-700": string; "plum-800": string; "plum-900": string; "plum-950": string; "purple_nova-025": string; "purple_nova-050": string; "purple_nova-100": string; "purple_nova-150": string; "purple_nova-200": string; "purple_nova-300": string; "purple_nova-400": string; "purple_nova-500": string; "purple_nova-600": string; "purple_nova-700": string; "purple_nova-750": string; "purple_nova-800": string; "purple_nova-900": string; "purple-050": string; "purple-100": string; "purple-200": string; "purple-300": string; "purple-400": string; "purple-500": string; "purple-600": string; "purple-700": string; "purple-800": string; "purple-900": string; "raspberry-050": string; "raspberry-100": string; "raspberry-200": string; "raspberry-300": string; "raspberry-400": string; "raspberry-500": string; "raspberry-600": string; "raspberry-700": string; "raspberry-800": string; "raspberry-900": string; "red_flame-025": string; "red_flame-050": string; "red_flame-100": string; "red_flame-200": string; "red_flame-300": string; "red_flame-400": string; "red_flame-500": string; "red_flame-600": string; "red_flame-700": string; "red_flame-800": string; "red_flame-900": string; "red-050": string; "red-100": string; "red-200": string; "red-300": string; "red-400": string; "red-500": string; "red-600": string; "red-700": string; "red-800": string; "red-900": string; "teal_spruce-015": string; "teal_spruce-025": string; "teal_spruce-050": string; "teal_spruce-100": string; "teal_spruce-200": string; "teal_spruce-300": string; "teal_spruce-400": string; "teal_spruce-500": string; "teal_spruce-600": string; "teal_spruce-700": string; "teal_spruce-800": string; "teal_spruce-900": string; "teal-050": string; "teal-100": string; "teal-200": string; "teal-300": string; "teal-400": string; "teal-500": string; "teal-600": string; "teal-700": string; "teal-800": string; "teal-900": string; "yellow_mustard-025": string; "yellow_mustard-050": string; "yellow_mustard-100": string; "yellow_mustard-200": string; "yellow_mustard-300": string; "yellow_mustard-400": string; "yellow_mustard-500": string; "yellow_mustard-600": string; "yellow_mustard-700": string; "yellow_mustard-800": string; "yellow_mustard-900": string; "yellow-050": string; "yellow-100": string; "yellow-200": string; "yellow-300": string; "yellow-400": string; "yellow-500": string; "yellow-600": string; "yellow-700": string; "yellow-800": string; "yellow-900": string; }; radius: { 2: string; 3: string; 4: string; 6: string; 8: string; 10: string; "button-medium": string; "button-small": string; dropdown: string; full: string; labels: string; }; "font-size": { button: string; l: string; m: string; s: string; xl: string; xs: string; xxl: string; xxs: string; xxxl: string; }; "font-family": Record<"mono" | "sans", string>; "font-weight": { bold: number; heavy: number; light: number; medium: number; regular: number; semibold: number; }; border: { 0: string; "width-025": string; "width-050": string; "width-0125": string; }; space: { 0: string; "025": string; "050": string; "075": string; 100: string; 125: string; 150: string; 175: string; 200: string; 225: string; 250: string; 275: string; 300: string; 350: string; 400: string; 450: string; 500: string; 600: string; 800: string; 900: string; 1000: string; 1200: string; 1600: string; 2000: string; 2400: string; 2800: string; 3200: string; "icon-lg": string; "icon-md": string; "icon-sm": string; "icon-v2-lg": string; "icon-v2-md": string; "icon-v2-sm": string; "icon-v2-xl": string; "icon-xl": string; "icon-xs": string; "icon-xxs": string; "padding-button-medium": string; "padding-button-small": string; "padding-header": string; }; text: Record<"brand-h1-font-family" | "brand-h1-font-size" | "brand-h1-font-style" | "brand-h1-font-weight" | "brand-h1-letter-spacing" | "brand-h1-line-height" | "brand-h1-text-transform" | "brand-h1-text-decoration" | "brand-h2-font-family" | "brand-h2-font-size" | "brand-h2-font-style" | "brand-h2-font-weight" | "brand-h2-letter-spacing" | "brand-h2-line-height" | "brand-h2-text-transform" | "brand-h2-text-decoration" | "brand-h3-font-family" | "brand-h3-font-size" | "brand-h3-font-style" | "brand-h3-font-weight" | "brand-h3-letter-spacing" | "brand-h3-line-height" | "brand-h3-text-transform" | "brand-h3-text-decoration" | "brand-h4-font-family" | "brand-h4-font-size" | "brand-h4-font-style" | "brand-h4-font-weight" | "brand-h4-letter-spacing" | "brand-h4-line-height" | "brand-h4-text-transform" | "brand-h4-text-decoration" | "brand-h5-font-family" | "brand-h5-font-size" | "brand-h5-font-style" | "brand-h5-font-weight" | "brand-h5-letter-spacing" | "brand-h5-line-height" | "brand-h5-text-transform" | "brand-h5-text-decoration" | "brand-h6-font-family" | "brand-h6-font-size" | "brand-h6-font-style" | "brand-h6-font-weight" | "brand-h6-letter-spacing" | "brand-h6-line-height" | "brand-h6-text-transform" | "brand-h6-text-decoration" | "brand-label-font-family" | "brand-label-font-size" | "brand-label-font-style" | "brand-label-font-weight" | "brand-label-letter-spacing" | "brand-label-line-height" | "brand-label-text-transform" | "brand-label-text-decoration" | "brand-p-font-family" | "brand-p-font-size" | "brand-p-font-style" | "brand-p-font-weight" | "brand-p-letter-spacing" | "brand-p-line-height" | "brand-p-text-transform" | "brand-p-text-decoration" | "brand-p-small-font-family" | "brand-p-small-font-size" | "brand-p-small-font-style" | "brand-p-small-font-weight" | "brand-p-small-letter-spacing" | "brand-p-small-line-height" | "brand-p-small-text-transform" | "brand-p-small-text-decoration" | "brand-p-subheader-font-family" | "brand-p-subheader-font-size" | "brand-p-subheader-font-style" | "brand-p-subheader-font-weight" | "brand-p-subheader-letter-spacing" | "brand-p-subheader-line-height" | "brand-p-subheader-text-transform" | "brand-p-subheader-text-decoration" | "product-code-font-family" | "product-code-font-size" | "product-code-font-style" | "product-code-font-weight" | "product-code-letter-spacing" | "product-code-line-height" | "product-code-text-transform" | "product-code-text-decoration" | "product-h1-font-family" | "product-h1-font-size" | "product-h1-font-style" | "product-h1-font-weight" | "product-h1-letter-spacing" | "product-h1-line-height" | "product-h1-text-transform" | "product-h1-text-decoration" | "product-h2-font-family" | "product-h2-font-size" | "product-h2-font-style" | "product-h2-font-weight" | "product-h2-letter-spacing" | "product-h2-line-height" | "product-h2-text-transform" | "product-h2-text-decoration" | "product-h3-font-family" | "product-h3-font-size" | "product-h3-font-style" | "product-h3-font-weight" | "product-h3-letter-spacing" | "product-h3-line-height" | "product-h3-text-transform" | "product-h3-text-decoration" | "product-h4-font-family" | "product-h4-font-size" | "product-h4-font-style" | "product-h4-font-weight" | "product-h4-letter-spacing" | "product-h4-line-height" | "product-h4-text-transform" | "product-h4-text-decoration" | "product-label-font-family" | "product-label-font-size" | "product-label-font-style" | "product-label-font-weight" | "product-label-letter-spacing" | "product-label-line-height" | "product-label-text-transform" | "product-label-text-decoration" | "product-label-secondary-font-family" | "product-label-secondary-font-size" | "product-label-secondary-font-style" | "product-label-secondary-font-weight" | "product-label-secondary-letter-spacing" | "product-label-secondary-line-height" | "product-label-secondary-text-transform" | "product-label-secondary-text-decoration" | "product-link-font-family" | "product-link-font-size" | "product-link-font-style" | "product-link-font-weight" | "product-link-letter-spacing" | "product-link-line-height" | "product-link-text-transform" | "product-link-text-decoration" | "product-link-secondary-font-family" | "product-link-secondary-font-size" | "product-link-secondary-font-style" | "product-link-secondary-font-weight" | "product-link-secondary-letter-spacing" | "product-link-secondary-line-height" | "product-link-secondary-text-transform" | "product-link-secondary-text-decoration" | "product-p-font-family" | "product-p-font-size" | "product-p-font-style" | "product-p-font-weight" | "product-p-letter-spacing" | "product-p-line-height" | "product-p-text-transform" | "product-p-text-decoration" | "product-p-active-font-family" | "product-p-active-font-size" | "product-p-active-font-style" | "product-p-active-font-weight" | "product-p-active-letter-spacing" | "product-p-active-line-height" | "product-p-active-text-transform" | "product-p-active-text-decoration" | "product-p-secondary-font-family" | "product-p-secondary-font-size" | "product-p-secondary-font-style" | "product-p-secondary-font-weight" | "product-p-secondary-letter-spacing" | "product-p-secondary-line-height" | "product-p-secondary-text-transform" | "product-p-secondary-text-decoration" | "product-ps-font-family" | "product-ps-font-size" | "product-ps-font-style" | "product-ps-font-weight" | "product-ps-letter-spacing" | "product-ps-line-height" | "product-ps-text-transform" | "product-ps-text-decoration" | "product-ps-active-font-family" | "product-ps-active-font-size" | "product-ps-active-font-style" | "product-ps-active-font-weight" | "product-ps-active-letter-spacing" | "product-ps-active-line-height" | "product-ps-active-text-transform" | "product-ps-active-text-decoration" | "product-pxs-font-family" | "product-pxs-font-size" | "product-pxs-font-style" | "product-pxs-font-weight" | "product-pxs-letter-spacing" | "product-pxs-line-height" | "product-pxs-text-transform" | "product-pxs-text-decoration" | "product-pxs-active-font-family" | "product-pxs-active-font-size" | "product-pxs-active-font-style" | "product-pxs-active-font-weight" | "product-pxs-active-letter-spacing" | "product-pxs-active-line-height" | "product-pxs-active-text-transform" | "product-pxs-active-text-decoration" | "product-pxs-secondary-font-family" | "product-pxs-secondary-font-size" | "product-pxs-secondary-font-style" | "product-pxs-secondary-font-weight" | "product-pxs-secondary-letter-spacing" | "product-pxs-secondary-line-height" | "product-pxs-secondary-text-transform" | "product-pxs-secondary-text-decoration", string>; depth: Record<"inset" | "onset" | "surface-1" | "surface-2" | "surface-3", string>; "depth-filter": Record<"surface-1" | "surface-2" | "surface-3", string>; focus: Record<"default", string>; motion: Record<"duration-fast-01" | "duration-fast-02" | "duration-moderate-01" | "duration-moderate-02" | "duration-slow-01" | "duration-slow-02" | "easing-entrance-expressive" | "easing-entrance-productive" | "easing-exit-expressive" | "easing-exit-productive" | "easing-standard-expressive" | "easing-standard-productive", string>; }; tokensMeta: { 'ai-fill-mix-amount': { id: string; $type: "number"; $value: number; }; 'ai-ring-stop-mix-amount-01': { id: string; $type: "number"; $value: number; }; 'ai-ring-stop-mix-amount-02': { id: string; $type: "number"; $value: number; }; 'ai-ring-stop-mix-amount-03': { id: string; $type: "number"; $value: number; }; 'border-0': { id: string; $type: "dimension"; $value: string; }; 'border-width-025': { id: string; $type: "dimension"; $value: string; }; 'border-width-050': { id: string; $type: "dimension"; $value: string; }; 'border-width-0125': { id: string; $type: "dimension"; $value: string; }; 'color-ai-fill-stop-01': { id: string; $type: "color"; $value: string; }; 'color-ai-fill-stop-02': { id: string; $type: "color"; $value: string; }; 'color-ai-fill-surface': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-fade': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-gap': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-stop-01': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-stop-02': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-stop-03': { id: string; $type: "color"; $value: string; }; 'color-background-default': { id: string; $type: "color"; $value: string; }; 'color-banner-caution-background': { id: string; $type: "color"; $value: string; }; 'color-banner-caution-border': { id: string; $type: "color"; $value: string; }; 'color-banner-default-background': { id: string; $type: "color"; $value: string; }; 'color-banner-default-border': { id: string; $type: "color"; $value: string; }; 'color-banner-error-background': { id: string; $type: "color"; $value: string; }; 'color-banner-error-border': { id: string; $type: "color"; $value: string; }; 'color-banner-feature-background': { id: string; $type: "color"; $value: string; }; 'color-banner-feature-border': { id: string; $type: "color"; $value: string; }; 'color-banner-information-background': { id: string; $type: "color"; $value: string; }; 'color-banner-information-border': { id: string; $type: "color"; $value: string; }; 'color-banner-success-background': { id: string; $type: "color"; $value: string; }; 'color-banner-success-border': { id: string; $type: "color"; $value: string; }; 'color-banner-warning-background': { id: string; $type: "color"; $value: string; }; 'color-border-accent': { id: string; $type: "color"; $value: string; }; 'color-border-accent-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-accent-hover': { id: string; $type: "color"; $value: string; }; 'color-border-accent-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-accent-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-accent-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-active': { id: string; $type: "color"; $value: string; }; 'color-border-active-hover': { id: string; $type: "color"; $value: string; }; 'color-border-base': { id: string; $type: "color"; $value: string; }; 'color-border-base-hover': { id: string; $type: "color"; $value: string; }; 'color-border-bold': { id: string; $type: "color"; $value: string; }; 'color-border-bold-hover': { id: string; $type: "color"; $value: string; }; 'color-border-caution': { id: string; $type: "color"; $value: string; }; 'color-border-caution-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-caution-hover': { id: string; $type: "color"; $value: string; }; 'color-border-caution-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-caution-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-caution-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-critical': { id: string; $type: "color"; $value: string; }; 'color-border-critical-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-critical-hover': { id: string; $type: "color"; $value: string; }; 'color-border-critical-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-critical-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-critical-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-dropdown': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-hover': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-focus': { id: string; $type: "color"; $value: string; }; 'color-border-information': { id: string; $type: "color"; $value: string; }; 'color-border-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-information-hover': { id: string; $type: "color"; $value: string; }; 'color-border-information-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-information-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-information-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-invert': { id: string; $type: "color"; $value: string; }; 'color-border-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-minimal-hover': { id: string; $type: "color"; $value: string; }; 'color-border-success': { id: string; $type: "color"; $value: string; }; 'color-border-success-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-success-hover': { id: string; $type: "color"; $value: string; }; 'color-border-success-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-success-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-success-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-button-surface-invert': { id: string; $type: "color"; $value: string; }; 'color-button-surface-invert-hover': { id: string; $type: "color"; $value: string; }; 'color-chart-base-1': { id: string; $type: "color"; $value: string; }; 'color-chart-base-2': { id: string; $type: "color"; $value: string; }; 'color-chart-base-3': { id: string; $type: "color"; $value: string; }; 'color-chart-base-4': { id: string; $type: "color"; $value: string; }; 'color-chart-positive-1': { id: string; $type: "color"; $value: string; }; 'color-chart-positive-2': { id: string; $type: "color"; $value: string; }; 'color-chart-positive-3': { id: string; $type: "color"; $value: string; }; 'color-chart-positive-4': { id: string; $type: "color"; $value: string; }; 'color-chart-secondary-1': { id: string; $type: "color"; $value: string; }; 'color-chart-secondary-2': { id: string; $type: "color"; $value: string; }; 'color-chart-secondary-3': { id: string; $type: "color"; $value: string; }; 'color-chart-secondary-4': { id: string; $type: "color"; $value: string; }; 'color-date_picker-background': { id: string; $type: "color"; $value: string; }; 'color-date_picker-background-hover': { id: string; $type: "color"; $value: string; }; 'color-date_picker-background-selected': { id: string; $type: "color"; $value: string; }; 'color-icon-accent': { id: string; $type: "color"; $value: string; }; 'color-icon-accent-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-accent-hover': { id: string; $type: "color"; $value: string; }; 'color-icon-accent-invert-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-base': { id: string; $type: "color"; $value: string; }; 'color-icon-base-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-base-hover': { id: string; $type: "color"; $value: string; }; 'color-icon-bold': { id: string; $type: "color"; $value: string; }; 'color-icon-button': { id: string; $type: "color"; $value: string; }; 'color-icon-caution': { id: string; $type: "color"; $value: string; }; 'color-icon-caution-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-critical': { id: string; $type: "color"; $value: string; }; 'color-icon-critical-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-critical-hover': { id: string; $type: "color"; $value: string; }; 'color-icon-critical-invert-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-feature': { id: string; $type: "color"; $value: string; }; 'color-icon-feature-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-information': { id: string; $type: "color"; $value: string; }; 'color-icon-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-invert': { id: string; $type: "color"; $value: string; }; 'color-icon-minimal': { id: string; $type: "color"; $value: string; }; 'color-icon-navigation': { id: string; $type: "color"; $value: string; }; 'color-icon-subtle': { id: string; $type: "color"; $value: string; }; 'color-icon-success': { id: string; $type: "color"; $value: string; }; 'color-icon-success-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-white': { id: string; $type: "color"; $value: string; }; 'color-label-blue-background': { id: string; $type: "color"; $value: string; }; 'color-label-blue-icon': { id: string; $type: "color"; $value: string; }; 'color-label-blue-text': { id: string; $type: "color"; $value: string; }; 'color-label-clementine-background': { id: string; $type: "color"; $value: string; }; 'color-label-clementine-icon': { id: string; $type: "color"; $value: string; }; 'color-label-clementine-text': { id: string; $type: "color"; $value: string; }; 'color-label-green-background': { id: string; $type: "color"; $value: string; }; 'color-label-green-icon': { id: string; $type: "color"; $value: string; }; 'color-label-green-text': { id: string; $type: "color"; $value: string; }; 'color-label-grey-background': { id: string; $type: "color"; $value: string; }; 'color-label-grey-icon': { id: string; $type: "color"; $value: string; }; 'color-label-grey-text': { id: string; $type: "color"; $value: string; }; 'color-label-plum-background': { id: string; $type: "color"; $value: string; }; 'color-label-plum-icon': { id: string; $type: "color"; $value: string; }; 'color-label-plum-text': { id: string; $type: "color"; $value: string; }; 'color-label-purple-background': { id: string; $type: "color"; $value: string; }; 'color-label-purple-icon': { id: string; $type: "color"; $value: string; }; 'color-label-purple-text': { id: string; $type: "color"; $value: string; }; 'color-label-raspberry-background': { id: string; $type: "color"; $value: string; }; 'color-label-raspberry-icon': { id: string; $type: "color"; $value: string; }; 'color-label-raspberry-text': { id: string; $type: "color"; $value: string; }; 'color-label-red-background': { id: string; $type: "color"; $value: string; }; 'color-label-red-icon': { id: string; $type: "color"; $value: string; }; 'color-label-red-text': { id: string; $type: "color"; $value: string; }; 'color-label-teal-background': { id: string; $type: "color"; $value: string; }; 'color-label-teal-icon': { id: string; $type: "color"; $value: string; }; 'color-label-teal-text': { id: string; $type: "color"; $value: string; }; 'color-label-yellow-background': { id: string; $type: "color"; $value: string; }; 'color-label-yellow-icon': { id: string; $type: "color"; $value: string; }; 'color-label-yellow-text': { id: string; $type: "color"; $value: string; }; 'color-navigation-background': { id: string; $type: "color"; $value: string; }; 'color-navigation-background-hover': { id: string; $type: "color"; $value: string; }; 'color-navigation-background-selected': { id: string; $type: "color"; $value: string; }; 'color-navigation-icon': { id: string; $type: "color"; $value: string; }; 'color-navigation-icon-collapsed': { id: string; $type: "color"; $value: string; }; 'color-navigation-icon-selected': { id: string; $type: "color"; $value: string; }; 'color-navigation-text': { id: string; $type: "color"; $value: string; }; 'color-navigation-text-selected': { id: string; $type: "color"; $value: string; }; 'color-snackbar-default-background': { id: string; $type: "color"; $value: string; }; 'color-snackbar-default-close-background-hover': { id: string; $type: "color"; $value: string; }; 'color-snackbar-error-background': { id: string; $type: "color"; $value: string; }; 'color-snackbar-error-close-background-hover': { id: string; $type: "color"; $value: string; }; 'color-snackbar-success-background': { id: string; $type: "color"; $value: string; }; 'color-snackbar-success-close-background-hover': { id: string; $type: "color"; $value: string; }; 'color-status-blue': { id: string; $type: "color"; $value: string; }; 'color-status-green': { id: string; $type: "color"; $value: string; }; 'color-status-purple': { id: string; $type: "color"; $value: string; }; 'color-status-red': { id: string; $type: "color"; $value: string; }; 'color-status-yellow': { id: string; $type: "color"; $value: string; }; 'color-surface-accent': { id: string; $type: "color"; $value: string; }; 'color-surface-accent-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-accent-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-accent-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-accent-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-active': { id: string; $type: "color"; $value: string; }; 'color-surface-active-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-active-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-base': { id: string; $type: "color"; $value: string; }; 'color-surface-base-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-base-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-bold-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-caution': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-critical': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-information': { id: string; $type: "color"; $value: string; }; 'color-surface-information-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-information-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-information-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-information-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-information-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-invert': { id: string; $type: "color"; $value: string; }; 'color-surface-invert-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-invert-bold-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-invert-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-invert-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-subtle-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-success': { id: string; $type: "color"; $value: string; }; 'color-surface-success-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-success-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-success-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-success-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-success-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-success-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-workflow-data': { id: string; $type: "color"; $value: string; }; 'color-surface-workflow-delays': { id: string; $type: "color"; $value: string; }; 'color-surface-workflow-flowcontrol': { id: string; $type: "color"; $value: string; }; 'color-surface-workflow-messages': { id: string; $type: "color"; $value: string; }; 'color-text-accent': { id: string; $type: "color"; $value: string; }; 'color-text-accent-bold': { id: string; $type: "color"; $value: string; }; 'color-text-accent-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-accent-hover': { id: string; $type: "color"; $value: string; }; 'color-text-accent-invert-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-active': { id: string; $type: "color"; $value: string; }; 'color-text-base': { id: string; $type: "color"; $value: string; }; 'color-text-base-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-base-hover': { id: string; $type: "color"; $value: string; }; 'color-text-bold': { id: string; $type: "color"; $value: string; }; 'color-text-bold-hover': { id: string; $type: "color"; $value: string; }; 'color-text-caution': { id: string; $type: "color"; $value: string; }; 'color-text-caution-bold': { id: string; $type: "color"; $value: string; }; 'color-text-caution-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-caution-hover': { id: string; $type: "color"; $value: string; }; 'color-text-caution-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-code': { id: string; $type: "color"; $value: string; }; 'color-text-critical': { id: string; $type: "color"; $value: string; }; 'color-text-critical-bold': { id: string; $type: "color"; $value: string; }; 'color-text-critical-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-critical-hover': { id: string; $type: "color"; $value: string; }; 'color-text-critical-invert-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-critical-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-information': { id: string; $type: "color"; $value: string; }; 'color-text-information-bold': { id: string; $type: "color"; $value: string; }; 'color-text-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-information-hover': { id: string; $type: "color"; $value: string; }; 'color-text-information-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-invert': { id: string; $type: "color"; $value: string; }; 'color-text-minimal': { id: string; $type: "color"; $value: string; }; 'color-text-placeholder': { id: string; $type: "color"; $value: string; }; 'color-text-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-success': { id: string; $type: "color"; $value: string; }; 'color-text-success-bold': { id: string; $type: "color"; $value: string; }; 'color-text-success-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-success-hover': { id: string; $type: "color"; $value: string; }; 'color-text-success-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-white': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-active': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-active-disabled': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-active-hover': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-base': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-base-disabled': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-base-hover': { id: string; $type: "color"; $value: string; }; 'depth-inset': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'depth-onset': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'depth-surface-1': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'depth-surface-2': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'depth-surface-3': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; focus: { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'font-family-mono': { id: string; $type: "fontFamily"; $value: string[]; }; 'font-family-sans': { id: string; $type: "fontFamily"; $value: string[]; }; 'font-size-button': { id: string; $type: "dimension"; $value: string; }; 'font-size-l': { id: string; $type: "dimension"; $value: string; }; 'font-size-m': { id: string; $type: "dimension"; $value: string; }; 'font-size-s': { id: string; $type: "dimension"; $value: string; }; 'font-size-xl': { id: string; $type: "dimension"; $value: string; }; 'font-size-xs': { id: string; $type: "dimension"; $value: string; }; 'font-size-xxl': { id: string; $type: "dimension"; $value: string; }; 'font-size-xxs': { id: string; $type: "dimension"; $value: string; }; 'font-size-xxxl': { id: string; $type: "dimension"; $value: string; }; 'font-weight-bold': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-heavy': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-light': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-medium': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-regular': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-semibold': { id: string; $type: "fontWeight"; $value: number; }; 'motion-duration-fast-01': { id: string; $type: "duration"; $value: string; }; 'motion-duration-fast-02': { id: string; $type: "duration"; $value: string; }; 'motion-duration-moderate-01': { id: string; $type: "duration"; $value: string; }; 'motion-duration-moderate-02': { id: string; $type: "duration"; $value: string; }; 'motion-duration-slow-01': { id: string; $type: "duration"; $value: string; }; 'motion-duration-slow-02': { id: string; $type: "duration"; $value: string; }; 'motion-easing-entrance-expressive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-entrance-productive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-exit-expressive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-exit-productive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-standard-expressive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-standard-productive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'palette-blue_wave-025': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-050': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-100': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-200': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-300': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-400': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-500': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-600': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-700': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-800': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-900': { id: string; $type: "color"; $value: string; }; 'palette-blue-050': { id: string; $type: "color"; $value: string; }; 'palette-blue-100': { id: string; $type: "color"; $value: string; }; 'palette-blue-200': { id: string; $type: "color"; $value: string; }; 'palette-blue-300': { id: string; $type: "color"; $value: string; }; 'palette-blue-400': { id: string; $type: "color"; $value: string; }; 'palette-blue-500': { id: string; $type: "color"; $value: string; }; 'palette-blue-600': { id: string; $type: "color"; $value: string; }; 'palette-blue-700': { id: string; $type: "color"; $value: string; }; 'palette-blue-800': { id: string; $type: "color"; $value: string; }; 'palette-blue-900': { id: string; $type: "color"; $value: string; }; 'palette-brand-forest': { id: string; $type: "color"; $value: string; }; 'palette-brand-forest-dark': { id: string; $type: "color"; $value: string; }; 'palette-brand-forest-light': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-015': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-025': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-050': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-100': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-200': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-300': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-400': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-500': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-550': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-600': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-700': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-800': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-850': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-900': { id: string; $type: "color"; $value: string; }; 'palette-green-050': { id: string; $type: "color"; $value: string; }; 'palette-green-100': { id: string; $type: "color"; $value: string; }; 'palette-green-200': { id: string; $type: "color"; $value: string; }; 'palette-green-300': { id: string; $type: "color"; $value: string; }; 'palette-green-400': { id: string; $type: "color"; $value: string; }; 'palette-green-500': { id: string; $type: "color"; $value: string; }; 'palette-green-600': { id: string; $type: "color"; $value: string; }; 'palette-green-700': { id: string; $type: "color"; $value: string; }; 'palette-green-800': { id: string; $type: "color"; $value: string; }; 'palette-green-900': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-015': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-025': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-050': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-100': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-200': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-250': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-300': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-350': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-400': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-500': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-600': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-650': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-700': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-750': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-800': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-850': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-900': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-black': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-white': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-015': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-025': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-050': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-100': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-200': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-300': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-400': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-500': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-600': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-700': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-800': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-900': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-black': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-white': { id: string; $type: "color"; $value: string; }; 'palette-grey-050': { id: string; $type: "color"; $value: string; }; 'palette-grey-100': { id: string; $type: "color"; $value: string; }; 'palette-grey-200': { id: string; $type: "color"; $value: string; }; 'palette-grey-300': { id: string; $type: "color"; $value: string; }; 'palette-grey-400': { id: string; $type: "color"; $value: string; }; 'palette-grey-500': { id: string; $type: "color"; $value: string; }; 'palette-grey-600': { id: string; $type: "color"; $value: string; }; 'palette-grey-700': { id: string; $type: "color"; $value: string; }; 'palette-grey-800': { id: string; $type: "color"; $value: string; }; 'palette-grey-900': { id: string; $type: "color"; $value: string; }; 'palette-grey-black': { id: string; $type: "color"; $value: string; }; 'palette-grey-white': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-025': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-050': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-100': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-200': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-300': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-400': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-500': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-600': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-700': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-800': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-900': { id: string; $type: "color"; $value: string; }; 'palette-orange-050': { id: string; $type: "color"; $value: string; }; 'palette-orange-100': { id: string; $type: "color"; $value: string; }; 'palette-orange-200': { id: string; $type: "color"; $value: string; }; 'palette-orange-300': { id: string; $type: "color"; $value: string; }; 'palette-orange-400': { id: string; $type: "color"; $value: string; }; 'palette-orange-500': { id: string; $type: "color"; $value: string; }; 'palette-orange-600': { id: string; $type: "color"; $value: string; }; 'palette-orange-700': { id: string; $type: "color"; $value: string; }; 'palette-orange-800': { id: string; $type: "color"; $value: string; }; 'palette-orange-900': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-025': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-050': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-100': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-200': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-300': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-400': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-500': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-600': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-700': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-800': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-900': { id: string; $type: "color"; $value: string; }; 'palette-plum-100': { id: string; $type: "color"; $value: string; }; 'palette-plum-200': { id: string; $type: "color"; $value: string; }; 'palette-plum-300': { id: string; $type: "color"; $value: string; }; 'palette-plum-400': { id: string; $type: "color"; $value: string; }; 'palette-plum-500': { id: string; $type: "color"; $value: string; }; 'palette-plum-600': { id: string; $type: "color"; $value: string; }; 'palette-plum-700': { id: string; $type: "color"; $value: string; }; 'palette-plum-800': { id: string; $type: "color"; $value: string; }; 'palette-plum-900': { id: string; $type: "color"; $value: string; }; 'palette-plum-950': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-025': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-050': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-100': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-150': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-200': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-300': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-400': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-500': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-600': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-700': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-750': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-800': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-900': { id: string; $type: "color"; $value: string; }; 'palette-purple-050': { id: string; $type: "color"; $value: string; }; 'palette-purple-100': { id: string; $type: "color"; $value: string; }; 'palette-purple-200': { id: string; $type: "color"; $value: string; }; 'palette-purple-300': { id: string; $type: "color"; $value: string; }; 'palette-purple-400': { id: string; $type: "color"; $value: string; }; 'palette-purple-500': { id: string; $type: "color"; $value: string; }; 'palette-purple-600': { id: string; $type: "color"; $value: string; }; 'palette-purple-700': { id: string; $type: "color"; $value: string; }; 'palette-purple-800': { id: string; $type: "color"; $value: string; }; 'palette-purple-900': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-050': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-100': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-200': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-300': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-400': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-500': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-600': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-700': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-800': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-900': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-025': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-050': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-100': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-200': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-300': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-400': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-500': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-600': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-700': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-800': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-900': { id: string; $type: "color"; $value: string; }; 'palette-red-050': { id: string; $type: "color"; $value: string; }; 'palette-red-100': { id: string; $type: "color"; $value: string; }; 'palette-red-200': { id: string; $type: "color"; $value: string; }; 'palette-red-300': { id: string; $type: "color"; $value: string; }; 'palette-red-400': { id: string; $type: "color"; $value: string; }; 'palette-red-500': { id: string; $type: "color"; $value: string; }; 'palette-red-600': { id: string; $type: "color"; $value: string; }; 'palette-red-700': { id: string; $type: "color"; $value: string; }; 'palette-red-800': { id: string; $type: "color"; $value: string; }; 'palette-red-900': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-015': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-025': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-050': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-100': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-200': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-300': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-400': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-500': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-600': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-700': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-800': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-900': { id: string; $type: "color"; $value: string; }; 'palette-teal-050': { id: string; $type: "color"; $value: string; }; 'palette-teal-100': { id: string; $type: "color"; $value: string; }; 'palette-teal-200': { id: string; $type: "color"; $value: string; }; 'palette-teal-300': { id: string; $type: "color"; $value: string; }; 'palette-teal-400': { id: string; $type: "color"; $value: string; }; 'palette-teal-500': { id: string; $type: "color"; $value: string; }; 'palette-teal-600': { id: string; $type: "color"; $value: string; }; 'palette-teal-700': { id: string; $type: "color"; $value: string; }; 'palette-teal-800': { id: string; $type: "color"; $value: string; }; 'palette-teal-900': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-025': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-050': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-100': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-200': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-300': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-400': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-500': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-600': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-700': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-800': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-900': { id: string; $type: "color"; $value: string; }; 'palette-yellow-050': { id: string; $type: "color"; $value: string; }; 'palette-yellow-100': { id: string; $type: "color"; $value: string; }; 'palette-yellow-200': { id: string; $type: "color"; $value: string; }; 'palette-yellow-300': { id: string; $type: "color"; $value: string; }; 'palette-yellow-400': { id: string; $type: "color"; $value: string; }; 'palette-yellow-500': { id: string; $type: "color"; $value: string; }; 'palette-yellow-600': { id: string; $type: "color"; $value: string; }; 'palette-yellow-700': { id: string; $type: "color"; $value: string; }; 'palette-yellow-800': { id: string; $type: "color"; $value: string; }; 'palette-yellow-900': { id: string; $type: "color"; $value: string; }; 'radius-2': { id: string; $type: "dimension"; $value: string; }; 'radius-3': { id: string; $type: "dimension"; $value: string; }; 'radius-4': { id: string; $type: "dimension"; $value: string; }; 'radius-6': { id: string; $type: "dimension"; $value: string; }; 'radius-8': { id: string; $type: "dimension"; $value: string; }; 'radius-10': { id: string; $type: "dimension"; $value: string; }; 'radius-button-medium': { id: string; $type: "dimension"; $value: string; }; 'radius-button-small': { id: string; $type: "dimension"; $value: string; }; 'radius-dropdown': { id: string; $type: "dimension"; $value: string; }; 'radius-full': { id: string; $type: "dimension"; $value: string; }; 'radius-labels': { id: string; $type: "dimension"; $value: string; }; 'space-0': { id: string; $type: "dimension"; $value: string; }; 'space-025': { id: string; $type: "dimension"; $value: string; }; 'space-050': { id: string; $type: "dimension"; $value: string; }; 'space-075': { id: string; $type: "dimension"; $value: string; }; 'space-100': { id: string; $type: "dimension"; $value: string; }; 'space-125': { id: string; $type: "dimension"; $value: string; }; 'space-150': { id: string; $type: "dimension"; $value: string; }; 'space-175': { id: string; $type: "dimension"; $value: string; }; 'space-200': { id: string; $type: "dimension"; $value: string; }; 'space-225': { id: string; $type: "dimension"; $value: string; }; 'space-250': { id: string; $type: "dimension"; $value: string; }; 'space-275': { id: string; $type: "dimension"; $value: string; }; 'space-300': { id: string; $type: "dimension"; $value: string; }; 'space-350': { id: string; $type: "dimension"; $value: string; }; 'space-400': { id: string; $type: "dimension"; $value: string; }; 'space-450': { id: string; $type: "dimension"; $value: string; }; 'space-500': { id: string; $type: "dimension"; $value: string; }; 'space-600': { id: string; $type: "dimension"; $value: string; }; 'space-800': { id: string; $type: "dimension"; $value: string; }; 'space-900': { id: string; $type: "dimension"; $value: string; }; 'space-1000': { id: string; $type: "dimension"; $value: string; }; 'space-1200': { id: string; $type: "dimension"; $value: string; }; 'space-1600': { id: string; $type: "dimension"; $value: string; }; 'space-2000': { id: string; $type: "dimension"; $value: string; }; 'space-2400': { id: string; $type: "dimension"; $value: string; }; 'space-2800': { id: string; $type: "dimension"; $value: string; }; 'space-3200': { id: string; $type: "dimension"; $value: string; }; 'space-icon-lg': { id: string; $type: "dimension"; $value: string; }; 'space-icon-md': { id: string; $type: "dimension"; $value: string; }; 'space-icon-sm': { id: string; $type: "dimension"; $value: string; }; 'space-icon-v2-lg': { id: string; $type: "dimension"; $value: string; }; 'space-icon-v2-md': { id: string; $type: "dimension"; $value: string; }; 'space-icon-v2-sm': { id: string; $type: "dimension"; $value: string; }; 'space-icon-v2-xl': { id: string; $type: "dimension"; $value: string; }; 'space-icon-xl': { id: string; $type: "dimension"; $value: string; }; 'space-icon-xs': { id: string; $type: "dimension"; $value: string; }; 'space-icon-xxs': { id: string; $type: "dimension"; $value: string; }; 'space-padding-button-medium': { id: string; $type: "dimension"; $value: string; }; 'space-padding-button-small': { id: string; $type: "dimension"; $value: string; }; 'space-padding-header': { id: string; $type: "dimension"; $value: string; }; 'text-brand-h1': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h2': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h3': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h4': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h5': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h6': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-label': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-p': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-p-small': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-p-subheader': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-code': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-h1': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-h2': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-h3': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-h4': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-label': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-label-secondary': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-link': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-link-secondary': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-p': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-p-active': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-p-secondary': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-ps': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-ps-active': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-pxs': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-pxs-active': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-pxs-secondary': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; }; styles: { text: readonly ("brand-h1" | "brand-h2" | "brand-h3" | "brand-h4" | "brand-h5" | "brand-h6" | "brand-label" | "brand-p" | "brand-p-small" | "brand-p-subheader" | "product-code" | "product-h1" | "product-h2" | "product-h3" | "product-h4" | "product-label" | "product-label-secondary" | "product-link" | "product-link-secondary" | "product-p" | "product-p-active" | "product-p-secondary" | "product-ps" | "product-ps-active" | "product-pxs" | "product-pxs-active" | "product-pxs-secondary")[]; }; colorScheme: ResolvedColorScheme; className: string; version: string; } | { name: string; tokens: DeepPartial<{ ai: { "fill-mix-amount": number; "ring-stop-mix-amount-01": number; "ring-stop-mix-amount-02": number; "ring-stop-mix-amount-03": number; }; color: { "ai-fill-stop-01": string; "ai-fill-stop-02": string; "ai-fill-surface": string; "ai-ring-fade": string; "ai-ring-gap": string; "ai-ring-stop-01": string; "ai-ring-stop-02": string; "ai-ring-stop-03": string; "background-default": string; "banner-caution-background": string; "banner-caution-border": string; "banner-default-background": string; "banner-default-border": string; "banner-error-background": string; "banner-error-border": string; "banner-feature-background": string; "banner-feature-border": string; "banner-information-background": string; "banner-information-border": string; "banner-success-background": string; "banner-success-border": string; "banner-warning-background": string; "border-accent": string; "border-accent-disabled": string; "border-accent-hover": string; "border-accent-minimal": string; "border-accent-subtle": string; "border-accent-subtle-hover": string; "border-active": string; "border-active-hover": string; "border-base": string; "border-base-hover": string; "border-bold": string; "border-bold-hover": string; "border-caution": string; "border-caution-disabled": string; "border-caution-hover": string; "border-caution-minimal": string; "border-caution-subtle": string; "border-caution-subtle-hover": string; "border-critical": string; "border-critical-disabled": string; "border-critical-hover": string; "border-critical-minimal": string; "border-critical-subtle": string; "border-critical-subtle-hover": string; "border-dropdown": string; "border-feature-border-information": string; "border-feature-border-information-disabled": string; "border-feature-border-information-hover": string; "border-feature-border-information-minimal": string; "border-feature-border-information-subtle": string; "border-feature-border-information-subtle-hover": string; "border-focus": string; "border-information": string; "border-information-disabled": string; "border-information-hover": string; "border-information-minimal": string; "border-information-subtle": string; "border-information-subtle-hover": string; "border-invert": string; "border-minimal": string; "border-minimal-hover": string; "border-success": string; "border-success-disabled": string; "border-success-hover": string; "border-success-minimal": string; "border-success-subtle": string; "border-success-subtle-hover": string; "button-surface-invert": string; "button-surface-invert-hover": string; "chart-base-1": string; "chart-base-2": string; "chart-base-3": string; "chart-base-4": string; "chart-positive-1": string; "chart-positive-2": string; "chart-positive-3": string; "chart-positive-4": string; "chart-secondary-1": string; "chart-secondary-2": string; "chart-secondary-3": string; "chart-secondary-4": string; "date_picker-background": string; "date_picker-background-hover": string; "date_picker-background-selected": string; "icon-accent": string; "icon-accent-disabled": string; "icon-accent-hover": string; "icon-accent-invert-disabled": string; "icon-base": string; "icon-base-disabled": string; "icon-base-hover": string; "icon-bold": string; "icon-button": string; "icon-caution": string; "icon-caution-disabled": string; "icon-critical": string; "icon-critical-disabled": string; "icon-critical-hover": string; "icon-critical-invert-disabled": string; "icon-feature": string; "icon-feature-disabled": string; "icon-information": string; "icon-information-disabled": string; "icon-invert": string; "icon-minimal": string; "icon-navigation": string; "icon-subtle": string; "icon-success": string; "icon-success-disabled": string; "icon-white": string; "label-blue-background": string; "label-blue-icon": string; "label-blue-text": string; "label-clementine-background": string; "label-clementine-icon": string; "label-clementine-text": string; "label-green-background": string; "label-green-icon": string; "label-green-text": string; "label-grey-background": string; "label-grey-icon": string; "label-grey-text": string; "label-plum-background": string; "label-plum-icon": string; "label-plum-text": string; "label-purple-background": string; "label-purple-icon": string; "label-purple-text": string; "label-raspberry-background": string; "label-raspberry-icon": string; "label-raspberry-text": string; "label-red-background": string; "label-red-icon": string; "label-red-text": string; "label-teal-background": string; "label-teal-icon": string; "label-teal-text": string; "label-yellow-background": string; "label-yellow-icon": string; "label-yellow-text": string; "navigation-background": string; "navigation-background-hover": string; "navigation-background-selected": string; "navigation-icon": string; "navigation-icon-collapsed": string; "navigation-icon-selected": string; "navigation-text": string; "navigation-text-selected": string; "snackbar-default-background": string; "snackbar-default-close-background-hover": string; "snackbar-error-background": string; "snackbar-error-close-background-hover": string; "snackbar-success-background": string; "snackbar-success-close-background-hover": string; "status-blue": string; "status-green": string; "status-purple": string; "status-red": string; "status-yellow": string; "surface-accent": string; "surface-accent-disabled": string; "surface-accent-hover": string; "surface-accent-minimal": string; "surface-accent-subtle": string; "surface-active": string; "surface-active-disabled": string; "surface-active-hover": string; "surface-base": string; "surface-base-disabled": string; "surface-base-hover": string; "surface-bold": string; "surface-bold-hover": string; "surface-caution": string; "surface-caution-bold": string; "surface-caution-disabled": string; "surface-caution-hover": string; "surface-caution-minimal": string; "surface-caution-subtle": string; "surface-caution-subtle-hover": string; "surface-critical": string; "surface-critical-bold": string; "surface-critical-disabled": string; "surface-critical-hover": string; "surface-critical-minimal": string; "surface-critical-subtle": string; "surface-critical-subtle-hover": string; "surface-information": string; "surface-information-bold": string; "surface-information-disabled": string; "surface-information-hover": string; "surface-information-minimal": string; "surface-information-subtle": string; "surface-information-subtle-hover": string; "surface-invert": string; "surface-invert-bold": string; "surface-invert-bold-hover": string; "surface-invert-hover": string; "surface-invert-subtle": string; "surface-subtle": string; "surface-subtle-disabled": string; "surface-subtle-hover": string; "surface-success": string; "surface-success-bold": string; "surface-success-disabled": string; "surface-success-hover": string; "surface-success-minimal": string; "surface-success-subtle": string; "surface-success-subtle-hover": string; "surface-workflow-data": string; "surface-workflow-delays": string; "surface-workflow-flowcontrol": string; "surface-workflow-messages": string; "text-accent": string; "text-accent-bold": string; "text-accent-disabled": string; "text-accent-hover": string; "text-accent-invert-disabled": string; "text-active": string; "text-base": string; "text-base-disabled": string; "text-base-hover": string; "text-bold": string; "text-bold-hover": string; "text-caution": string; "text-caution-bold": string; "text-caution-disabled": string; "text-caution-hover": string; "text-caution-subtle": string; "text-code": string; "text-critical": string; "text-critical-bold": string; "text-critical-disabled": string; "text-critical-hover": string; "text-critical-invert-disabled": string; "text-critical-subtle": string; "text-information": string; "text-information-bold": string; "text-information-disabled": string; "text-information-hover": string; "text-information-subtle": string; "text-invert": string; "text-minimal": string; "text-placeholder": string; "text-subtle": string; "text-success": string; "text-success-bold": string; "text-success-disabled": string; "text-success-hover": string; "text-success-subtle": string; "text-white": string; "toggle-surface-active": string; "toggle-surface-active-disabled": string; "toggle-surface-active-hover": string; "toggle-surface-base": string; "toggle-surface-base-disabled": string; "toggle-surface-base-hover": string; }; palette: { "blue_wave-025": string; "blue_wave-050": string; "blue_wave-100": string; "blue_wave-200": string; "blue_wave-300": string; "blue_wave-400": string; "blue_wave-500": string; "blue_wave-600": string; "blue_wave-700": string; "blue_wave-800": string; "blue_wave-900": string; "blue-050": string; "blue-100": string; "blue-200": string; "blue-300": string; "blue-400": string; "blue-500": string; "blue-600": string; "blue-700": string; "blue-800": string; "blue-900": string; "brand-forest": string; "brand-forest-dark": string; "brand-forest-light": string; "green_verdant-015": string; "green_verdant-025": string; "green_verdant-050": string; "green_verdant-100": string; "green_verdant-200": string; "green_verdant-300": string; "green_verdant-400": string; "green_verdant-500": string; "green_verdant-550": string; "green_verdant-600": string; "green_verdant-700": string; "green_verdant-800": string; "green_verdant-850": string; "green_verdant-900": string; "green-050": string; "green-100": string; "green-200": string; "green-300": string; "green-400": string; "green-500": string; "green-600": string; "green-700": string; "green-800": string; "green-900": string; "grey_charcoal-015": string; "grey_charcoal-025": string; "grey_charcoal-050": string; "grey_charcoal-100": string; "grey_charcoal-200": string; "grey_charcoal-250": string; "grey_charcoal-300": string; "grey_charcoal-350": string; "grey_charcoal-400": string; "grey_charcoal-500": string; "grey_charcoal-600": string; "grey_charcoal-650": string; "grey_charcoal-700": string; "grey_charcoal-750": string; "grey_charcoal-800": string; "grey_charcoal-850": string; "grey_charcoal-900": string; "grey_charcoal-black": string; "grey_charcoal-white": string; "grey_warm_charcoal-015": string; "grey_warm_charcoal-025": string; "grey_warm_charcoal-050": string; "grey_warm_charcoal-100": string; "grey_warm_charcoal-200": string; "grey_warm_charcoal-300": string; "grey_warm_charcoal-400": string; "grey_warm_charcoal-500": string; "grey_warm_charcoal-600": string; "grey_warm_charcoal-700": string; "grey_warm_charcoal-800": string; "grey_warm_charcoal-900": string; "grey_warm_charcoal-black": string; "grey_warm_charcoal-white": string; "grey-050": string; "grey-100": string; "grey-200": string; "grey-300": string; "grey-400": string; "grey-500": string; "grey-600": string; "grey-700": string; "grey-800": string; "grey-900": string; "grey-black": string; "grey-white": string; "orange_zest-025": string; "orange_zest-050": string; "orange_zest-100": string; "orange_zest-200": string; "orange_zest-300": string; "orange_zest-400": string; "orange_zest-500": string; "orange_zest-600": string; "orange_zest-700": string; "orange_zest-800": string; "orange_zest-900": string; "orange-050": string; "orange-100": string; "orange-200": string; "orange-300": string; "orange-400": string; "orange-500": string; "orange-600": string; "orange-700": string; "orange-800": string; "orange-900": string; "pink_blush-025": string; "pink_blush-050": string; "pink_blush-100": string; "pink_blush-200": string; "pink_blush-300": string; "pink_blush-400": string; "pink_blush-500": string; "pink_blush-600": string; "pink_blush-700": string; "pink_blush-800": string; "pink_blush-900": string; "plum-100": string; "plum-200": string; "plum-300": string; "plum-400": string; "plum-500": string; "plum-600": string; "plum-700": string; "plum-800": string; "plum-900": string; "plum-950": string; "purple_nova-025": string; "purple_nova-050": string; "purple_nova-100": string; "purple_nova-150": string; "purple_nova-200": string; "purple_nova-300": string; "purple_nova-400": string; "purple_nova-500": string; "purple_nova-600": string; "purple_nova-700": string; "purple_nova-750": string; "purple_nova-800": string; "purple_nova-900": string; "purple-050": string; "purple-100": string; "purple-200": string; "purple-300": string; "purple-400": string; "purple-500": string; "purple-600": string; "purple-700": string; "purple-800": string; "purple-900": string; "raspberry-050": string; "raspberry-100": string; "raspberry-200": string; "raspberry-300": string; "raspberry-400": string; "raspberry-500": string; "raspberry-600": string; "raspberry-700": string; "raspberry-800": string; "raspberry-900": string; "red_flame-025": string; "red_flame-050": string; "red_flame-100": string; "red_flame-200": string; "red_flame-300": string; "red_flame-400": string; "red_flame-500": string; "red_flame-600": string; "red_flame-700": string; "red_flame-800": string; "red_flame-900": string; "red-050": string; "red-100": string; "red-200": string; "red-300": string; "red-400": string; "red-500": string; "red-600": string; "red-700": string; "red-800": string; "red-900": string; "teal_spruce-015": string; "teal_spruce-025": string; "teal_spruce-050": string; "teal_spruce-100": string; "teal_spruce-200": string; "teal_spruce-300": string; "teal_spruce-400": string; "teal_spruce-500": string; "teal_spruce-600": string; "teal_spruce-700": string; "teal_spruce-800": string; "teal_spruce-900": string; "teal-050": string; "teal-100": string; "teal-200": string; "teal-300": string; "teal-400": string; "teal-500": string; "teal-600": string; "teal-700": string; "teal-800": string; "teal-900": string; "yellow_mustard-025": string; "yellow_mustard-050": string; "yellow_mustard-100": string; "yellow_mustard-200": string; "yellow_mustard-300": string; "yellow_mustard-400": string; "yellow_mustard-500": string; "yellow_mustard-600": string; "yellow_mustard-700": string; "yellow_mustard-800": string; "yellow_mustard-900": string; "yellow-050": string; "yellow-100": string; "yellow-200": string; "yellow-300": string; "yellow-400": string; "yellow-500": string; "yellow-600": string; "yellow-700": string; "yellow-800": string; "yellow-900": string; }; radius: { 2: string; 3: string; 4: string; 6: string; 8: string; 10: string; "button-medium": string; "button-small": string; dropdown: string; full: string; labels: string; }; "font-size": { button: string; l: string; m: string; s: string; xl: string; xs: string; xxl: string; xxs: string; xxxl: string; }; "font-family": Record<"mono" | "sans", string>; "font-weight": { bold: number; heavy: number; light: number; medium: number; regular: number; semibold: number; }; border: { 0: string; "width-025": string; "width-050": string; "width-0125": string; }; space: { 0: string; "025": string; "050": string; "075": string; 100: string; 125: string; 150: string; 175: string; 200: string; 225: string; 250: string; 275: string; 300: string; 350: string; 400: string; 450: string; 500: string; 600: string; 800: string; 900: string; 1000: string; 1200: string; 1600: string; 2000: string; 2400: string; 2800: string; 3200: string; "icon-lg": string; "icon-md": string; "icon-sm": string; "icon-v2-lg": string; "icon-v2-md": string; "icon-v2-sm": string; "icon-v2-xl": string; "icon-xl": string; "icon-xs": string; "icon-xxs": string; "padding-button-medium": string; "padding-button-small": string; "padding-header": string; }; text: Record<"brand-h1-font-family" | "brand-h1-font-size" | "brand-h1-font-style" | "brand-h1-font-weight" | "brand-h1-letter-spacing" | "brand-h1-line-height" | "brand-h1-text-transform" | "brand-h1-text-decoration" | "brand-h2-font-family" | "brand-h2-font-size" | "brand-h2-font-style" | "brand-h2-font-weight" | "brand-h2-letter-spacing" | "brand-h2-line-height" | "brand-h2-text-transform" | "brand-h2-text-decoration" | "brand-h3-font-family" | "brand-h3-font-size" | "brand-h3-font-style" | "brand-h3-font-weight" | "brand-h3-letter-spacing" | "brand-h3-line-height" | "brand-h3-text-transform" | "brand-h3-text-decoration" | "brand-h4-font-family" | "brand-h4-font-size" | "brand-h4-font-style" | "brand-h4-font-weight" | "brand-h4-letter-spacing" | "brand-h4-line-height" | "brand-h4-text-transform" | "brand-h4-text-decoration" | "brand-h5-font-family" | "brand-h5-font-size" | "brand-h5-font-style" | "brand-h5-font-weight" | "brand-h5-letter-spacing" | "brand-h5-line-height" | "brand-h5-text-transform" | "brand-h5-text-decoration" | "brand-h6-font-family" | "brand-h6-font-size" | "brand-h6-font-style" | "brand-h6-font-weight" | "brand-h6-letter-spacing" | "brand-h6-line-height" | "brand-h6-text-transform" | "brand-h6-text-decoration" | "brand-label-font-family" | "brand-label-font-size" | "brand-label-font-style" | "brand-label-font-weight" | "brand-label-letter-spacing" | "brand-label-line-height" | "brand-label-text-transform" | "brand-label-text-decoration" | "brand-p-font-family" | "brand-p-font-size" | "brand-p-font-style" | "brand-p-font-weight" | "brand-p-letter-spacing" | "brand-p-line-height" | "brand-p-text-transform" | "brand-p-text-decoration" | "brand-p-small-font-family" | "brand-p-small-font-size" | "brand-p-small-font-style" | "brand-p-small-font-weight" | "brand-p-small-letter-spacing" | "brand-p-small-line-height" | "brand-p-small-text-transform" | "brand-p-small-text-decoration" | "brand-p-subheader-font-family" | "brand-p-subheader-font-size" | "brand-p-subheader-font-style" | "brand-p-subheader-font-weight" | "brand-p-subheader-letter-spacing" | "brand-p-subheader-line-height" | "brand-p-subheader-text-transform" | "brand-p-subheader-text-decoration" | "product-code-font-family" | "product-code-font-size" | "product-code-font-style" | "product-code-font-weight" | "product-code-letter-spacing" | "product-code-line-height" | "product-code-text-transform" | "product-code-text-decoration" | "product-h1-font-family" | "product-h1-font-size" | "product-h1-font-style" | "product-h1-font-weight" | "product-h1-letter-spacing" | "product-h1-line-height" | "product-h1-text-transform" | "product-h1-text-decoration" | "product-h2-font-family" | "product-h2-font-size" | "product-h2-font-style" | "product-h2-font-weight" | "product-h2-letter-spacing" | "product-h2-line-height" | "product-h2-text-transform" | "product-h2-text-decoration" | "product-h3-font-family" | "product-h3-font-size" | "product-h3-font-style" | "product-h3-font-weight" | "product-h3-letter-spacing" | "product-h3-line-height" | "product-h3-text-transform" | "product-h3-text-decoration" | "product-h4-font-family" | "product-h4-font-size" | "product-h4-font-style" | "product-h4-font-weight" | "product-h4-letter-spacing" | "product-h4-line-height" | "product-h4-text-transform" | "product-h4-text-decoration" | "product-label-font-family" | "product-label-font-size" | "product-label-font-style" | "product-label-font-weight" | "product-label-letter-spacing" | "product-label-line-height" | "product-label-text-transform" | "product-label-text-decoration" | "product-label-secondary-font-family" | "product-label-secondary-font-size" | "product-label-secondary-font-style" | "product-label-secondary-font-weight" | "product-label-secondary-letter-spacing" | "product-label-secondary-line-height" | "product-label-secondary-text-transform" | "product-label-secondary-text-decoration" | "product-link-font-family" | "product-link-font-size" | "product-link-font-style" | "product-link-font-weight" | "product-link-letter-spacing" | "product-link-line-height" | "product-link-text-transform" | "product-link-text-decoration" | "product-link-secondary-font-family" | "product-link-secondary-font-size" | "product-link-secondary-font-style" | "product-link-secondary-font-weight" | "product-link-secondary-letter-spacing" | "product-link-secondary-line-height" | "product-link-secondary-text-transform" | "product-link-secondary-text-decoration" | "product-p-font-family" | "product-p-font-size" | "product-p-font-style" | "product-p-font-weight" | "product-p-letter-spacing" | "product-p-line-height" | "product-p-text-transform" | "product-p-text-decoration" | "product-p-active-font-family" | "product-p-active-font-size" | "product-p-active-font-style" | "product-p-active-font-weight" | "product-p-active-letter-spacing" | "product-p-active-line-height" | "product-p-active-text-transform" | "product-p-active-text-decoration" | "product-p-secondary-font-family" | "product-p-secondary-font-size" | "product-p-secondary-font-style" | "product-p-secondary-font-weight" | "product-p-secondary-letter-spacing" | "product-p-secondary-line-height" | "product-p-secondary-text-transform" | "product-p-secondary-text-decoration" | "product-ps-font-family" | "product-ps-font-size" | "product-ps-font-style" | "product-ps-font-weight" | "product-ps-letter-spacing" | "product-ps-line-height" | "product-ps-text-transform" | "product-ps-text-decoration" | "product-ps-active-font-family" | "product-ps-active-font-size" | "product-ps-active-font-style" | "product-ps-active-font-weight" | "product-ps-active-letter-spacing" | "product-ps-active-line-height" | "product-ps-active-text-transform" | "product-ps-active-text-decoration" | "product-pxs-font-family" | "product-pxs-font-size" | "product-pxs-font-style" | "product-pxs-font-weight" | "product-pxs-letter-spacing" | "product-pxs-line-height" | "product-pxs-text-transform" | "product-pxs-text-decoration" | "product-pxs-active-font-family" | "product-pxs-active-font-size" | "product-pxs-active-font-style" | "product-pxs-active-font-weight" | "product-pxs-active-letter-spacing" | "product-pxs-active-line-height" | "product-pxs-active-text-transform" | "product-pxs-active-text-decoration" | "product-pxs-secondary-font-family" | "product-pxs-secondary-font-size" | "product-pxs-secondary-font-style" | "product-pxs-secondary-font-weight" | "product-pxs-secondary-letter-spacing" | "product-pxs-secondary-line-height" | "product-pxs-secondary-text-transform" | "product-pxs-secondary-text-decoration", string>; depth: Record<"inset" | "onset" | "surface-1" | "surface-2" | "surface-3", string>; "depth-filter": Record<"surface-1" | "surface-2" | "surface-3", string>; focus: Record<"default", string>; motion: Record<"duration-fast-01" | "duration-fast-02" | "duration-moderate-01" | "duration-moderate-02" | "duration-slow-01" | "duration-slow-02" | "easing-entrance-expressive" | "easing-entrance-productive" | "easing-exit-expressive" | "easing-exit-productive" | "easing-standard-expressive" | "easing-standard-productive", string>; }> & { ai?: UnknownRecord | undefined; color?: UnknownRecord | undefined; palette?: UnknownRecord | undefined; radius?: UnknownRecord | undefined; "font-size"?: UnknownRecord | undefined; "font-family"?: UnknownRecord | undefined; "font-weight"?: UnknownRecord | undefined; border?: UnknownRecord | undefined; space?: UnknownRecord | undefined; text?: UnknownRecord | undefined; depth?: UnknownRecord | undefined; "depth-filter"?: UnknownRecord | undefined; focus?: UnknownRecord | undefined; motion?: UnknownRecord | undefined; }; tokensMeta: DeepPartial<{ 'ai-fill-mix-amount': { id: string; $type: "number"; $value: number; }; 'ai-ring-stop-mix-amount-01': { id: string; $type: "number"; $value: number; }; 'ai-ring-stop-mix-amount-02': { id: string; $type: "number"; $value: number; }; 'ai-ring-stop-mix-amount-03': { id: string; $type: "number"; $value: number; }; 'border-0': { id: string; $type: "dimension"; $value: string; }; 'border-width-025': { id: string; $type: "dimension"; $value: string; }; 'border-width-050': { id: string; $type: "dimension"; $value: string; }; 'border-width-0125': { id: string; $type: "dimension"; $value: string; }; 'color-ai-fill-stop-01': { id: string; $type: "color"; $value: string; }; 'color-ai-fill-stop-02': { id: string; $type: "color"; $value: string; }; 'color-ai-fill-surface': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-fade': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-gap': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-stop-01': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-stop-02': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-stop-03': { id: string; $type: "color"; $value: string; }; 'color-background-default': { id: string; $type: "color"; $value: string; }; 'color-banner-caution-background': { id: string; $type: "color"; $value: string; }; 'color-banner-caution-border': { id: string; $type: "color"; $value: string; }; 'color-banner-default-background': { id: string; $type: "color"; $value: string; }; 'color-banner-default-border': { id: string; $type: "color"; $value: string; }; 'color-banner-error-background': { id: string; $type: "color"; $value: string; }; 'color-banner-error-border': { id: string; $type: "color"; $value: string; }; 'color-banner-feature-background': { id: string; $type: "color"; $value: string; }; 'color-banner-feature-border': { id: string; $type: "color"; $value: string; }; 'color-banner-information-background': { id: string; $type: "color"; $value: string; }; 'color-banner-information-border': { id: string; $type: "color"; $value: string; }; 'color-banner-success-background': { id: string; $type: "color"; $value: string; }; 'color-banner-success-border': { id: string; $type: "color"; $value: string; }; 'color-banner-warning-background': { id: string; $type: "color"; $value: string; }; 'color-border-accent': { id: string; $type: "color"; $value: string; }; 'color-border-accent-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-accent-hover': { id: string; $type: "color"; $value: string; }; 'color-border-accent-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-accent-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-accent-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-active': { id: string; $type: "color"; $value: string; }; 'color-border-active-hover': { id: string; $type: "color"; $value: string; }; 'color-border-base': { id: string; $type: "color"; $value: string; }; 'color-border-base-hover': { id: string; $type: "color"; $value: string; }; 'color-border-bold': { id: string; $type: "color"; $value: string; }; 'color-border-bold-hover': { id: string; $type: "color"; $value: string; }; 'color-border-caution': { id: string; $type: "color"; $value: string; }; 'color-border-caution-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-caution-hover': { id: string; $type: "color"; $value: string; }; 'color-border-caution-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-caution-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-caution-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-critical': { id: string; $type: "color"; $value: string; }; 'color-border-critical-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-critical-hover': { id: string; $type: "color"; $value: string; }; 'color-border-critical-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-critical-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-critical-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-dropdown': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-hover': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-focus': { id: string; $type: "color"; $value: string; }; 'color-border-information': { id: string; $type: "color"; $value: string; }; 'color-border-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-information-hover': { id: string; $type: "color"; $value: string; }; 'color-border-information-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-information-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-information-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-invert': { id: string; $type: "color"; $value: string; }; 'color-border-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-minimal-hover': { id: string; $type: "color"; $value: string; }; 'color-border-success': { id: string; $type: "color"; $value: string; }; 'color-border-success-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-success-hover': { id: string; $type: "color"; $value: string; }; 'color-border-success-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-success-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-success-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-button-surface-invert': { id: string; $type: "color"; $value: string; }; 'color-button-surface-invert-hover': { id: string; $type: "color"; $value: string; }; 'color-chart-base-1': { id: string; $type: "color"; $value: string; }; 'color-chart-base-2': { id: string; $type: "color"; $value: string; }; 'color-chart-base-3': { id: string; $type: "color"; $value: string; }; 'color-chart-base-4': { id: string; $type: "color"; $value: string; }; 'color-chart-positive-1': { id: string; $type: "color"; $value: string; }; 'color-chart-positive-2': { id: string; $type: "color"; $value: string; }; 'color-chart-positive-3': { id: string; $type: "color"; $value: string; }; 'color-chart-positive-4': { id: string; $type: "color"; $value: string; }; 'color-chart-secondary-1': { id: string; $type: "color"; $value: string; }; 'color-chart-secondary-2': { id: string; $type: "color"; $value: string; }; 'color-chart-secondary-3': { id: string; $type: "color"; $value: string; }; 'color-chart-secondary-4': { id: string; $type: "color"; $value: string; }; 'color-date_picker-background': { id: string; $type: "color"; $value: string; }; 'color-date_picker-background-hover': { id: string; $type: "color"; $value: string; }; 'color-date_picker-background-selected': { id: string; $type: "color"; $value: string; }; 'color-icon-accent': { id: string; $type: "color"; $value: string; }; 'color-icon-accent-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-accent-hover': { id: string; $type: "color"; $value: string; }; 'color-icon-accent-invert-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-base': { id: string; $type: "color"; $value: string; }; 'color-icon-base-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-base-hover': { id: string; $type: "color"; $value: string; }; 'color-icon-bold': { id: string; $type: "color"; $value: string; }; 'color-icon-button': { id: string; $type: "color"; $value: string; }; 'color-icon-caution': { id: string; $type: "color"; $value: string; }; 'color-icon-caution-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-critical': { id: string; $type: "color"; $value: string; }; 'color-icon-critical-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-critical-hover': { id: string; $type: "color"; $value: string; }; 'color-icon-critical-invert-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-feature': { id: string; $type: "color"; $value: string; }; 'color-icon-feature-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-information': { id: string; $type: "color"; $value: string; }; 'color-icon-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-invert': { id: string; $type: "color"; $value: string; }; 'color-icon-minimal': { id: string; $type: "color"; $value: string; }; 'color-icon-navigation': { id: string; $type: "color"; $value: string; }; 'color-icon-subtle': { id: string; $type: "color"; $value: string; }; 'color-icon-success': { id: string; $type: "color"; $value: string; }; 'color-icon-success-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-white': { id: string; $type: "color"; $value: string; }; 'color-label-blue-background': { id: string; $type: "color"; $value: string; }; 'color-label-blue-icon': { id: string; $type: "color"; $value: string; }; 'color-label-blue-text': { id: string; $type: "color"; $value: string; }; 'color-label-clementine-background': { id: string; $type: "color"; $value: string; }; 'color-label-clementine-icon': { id: string; $type: "color"; $value: string; }; 'color-label-clementine-text': { id: string; $type: "color"; $value: string; }; 'color-label-green-background': { id: string; $type: "color"; $value: string; }; 'color-label-green-icon': { id: string; $type: "color"; $value: string; }; 'color-label-green-text': { id: string; $type: "color"; $value: string; }; 'color-label-grey-background': { id: string; $type: "color"; $value: string; }; 'color-label-grey-icon': { id: string; $type: "color"; $value: string; }; 'color-label-grey-text': { id: string; $type: "color"; $value: string; }; 'color-label-plum-background': { id: string; $type: "color"; $value: string; }; 'color-label-plum-icon': { id: string; $type: "color"; $value: string; }; 'color-label-plum-text': { id: string; $type: "color"; $value: string; }; 'color-label-purple-background': { id: string; $type: "color"; $value: string; }; 'color-label-purple-icon': { id: string; $type: "color"; $value: string; }; 'color-label-purple-text': { id: string; $type: "color"; $value: string; }; 'color-label-raspberry-background': { id: string; $type: "color"; $value: string; }; 'color-label-raspberry-icon': { id: string; $type: "color"; $value: string; }; 'color-label-raspberry-text': { id: string; $type: "color"; $value: string; }; 'color-label-red-background': { id: string; $type: "color"; $value: string; }; 'color-label-red-icon': { id: string; $type: "color"; $value: string; }; 'color-label-red-text': { id: string; $type: "color"; $value: string; }; 'color-label-teal-background': { id: string; $type: "color"; $value: string; }; 'color-label-teal-icon': { id: string; $type: "color"; $value: string; }; 'color-label-teal-text': { id: string; $type: "color"; $value: string; }; 'color-label-yellow-background': { id: string; $type: "color"; $value: string; }; 'color-label-yellow-icon': { id: string; $type: "color"; $value: string; }; 'color-label-yellow-text': { id: string; $type: "color"; $value: string; }; 'color-navigation-background': { id: string; $type: "color"; $value: string; }; 'color-navigation-background-hover': { id: string; $type: "color"; $value: string; }; 'color-navigation-background-selected': { id: string; $type: "color"; $value: string; }; 'color-navigation-icon': { id: string; $type: "color"; $value: string; }; 'color-navigation-icon-collapsed': { id: string; $type: "color"; $value: string; }; 'color-navigation-icon-selected': { id: string; $type: "color"; $value: string; }; 'color-navigation-text': { id: string; $type: "color"; $value: string; }; 'color-navigation-text-selected': { id: string; $type: "color"; $value: string; }; 'color-snackbar-default-background': { id: string; $type: "color"; $value: string; }; 'color-snackbar-default-close-background-hover': { id: string; $type: "color"; $value: string; }; 'color-snackbar-error-background': { id: string; $type: "color"; $value: string; }; 'color-snackbar-error-close-background-hover': { id: string; $type: "color"; $value: string; }; 'color-snackbar-success-background': { id: string; $type: "color"; $value: string; }; 'color-snackbar-success-close-background-hover': { id: string; $type: "color"; $value: string; }; 'color-status-blue': { id: string; $type: "color"; $value: string; }; 'color-status-green': { id: string; $type: "color"; $value: string; }; 'color-status-purple': { id: string; $type: "color"; $value: string; }; 'color-status-red': { id: string; $type: "color"; $value: string; }; 'color-status-yellow': { id: string; $type: "color"; $value: string; }; 'color-surface-accent': { id: string; $type: "color"; $value: string; }; 'color-surface-accent-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-accent-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-accent-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-accent-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-active': { id: string; $type: "color"; $value: string; }; 'color-surface-active-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-active-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-base': { id: string; $type: "color"; $value: string; }; 'color-surface-base-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-base-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-bold-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-caution': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-critical': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-information': { id: string; $type: "color"; $value: string; }; 'color-surface-information-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-information-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-information-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-information-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-information-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-invert': { id: string; $type: "color"; $value: string; }; 'color-surface-invert-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-invert-bold-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-invert-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-invert-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-subtle-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-success': { id: string; $type: "color"; $value: string; }; 'color-surface-success-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-success-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-success-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-success-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-success-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-success-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-workflow-data': { id: string; $type: "color"; $value: string; }; 'color-surface-workflow-delays': { id: string; $type: "color"; $value: string; }; 'color-surface-workflow-flowcontrol': { id: string; $type: "color"; $value: string; }; 'color-surface-workflow-messages': { id: string; $type: "color"; $value: string; }; 'color-text-accent': { id: string; $type: "color"; $value: string; }; 'color-text-accent-bold': { id: string; $type: "color"; $value: string; }; 'color-text-accent-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-accent-hover': { id: string; $type: "color"; $value: string; }; 'color-text-accent-invert-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-active': { id: string; $type: "color"; $value: string; }; 'color-text-base': { id: string; $type: "color"; $value: string; }; 'color-text-base-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-base-hover': { id: string; $type: "color"; $value: string; }; 'color-text-bold': { id: string; $type: "color"; $value: string; }; 'color-text-bold-hover': { id: string; $type: "color"; $value: string; }; 'color-text-caution': { id: string; $type: "color"; $value: string; }; 'color-text-caution-bold': { id: string; $type: "color"; $value: string; }; 'color-text-caution-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-caution-hover': { id: string; $type: "color"; $value: string; }; 'color-text-caution-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-code': { id: string; $type: "color"; $value: string; }; 'color-text-critical': { id: string; $type: "color"; $value: string; }; 'color-text-critical-bold': { id: string; $type: "color"; $value: string; }; 'color-text-critical-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-critical-hover': { id: string; $type: "color"; $value: string; }; 'color-text-critical-invert-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-critical-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-information': { id: string; $type: "color"; $value: string; }; 'color-text-information-bold': { id: string; $type: "color"; $value: string; }; 'color-text-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-information-hover': { id: string; $type: "color"; $value: string; }; 'color-text-information-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-invert': { id: string; $type: "color"; $value: string; }; 'color-text-minimal': { id: string; $type: "color"; $value: string; }; 'color-text-placeholder': { id: string; $type: "color"; $value: string; }; 'color-text-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-success': { id: string; $type: "color"; $value: string; }; 'color-text-success-bold': { id: string; $type: "color"; $value: string; }; 'color-text-success-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-success-hover': { id: string; $type: "color"; $value: string; }; 'color-text-success-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-white': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-active': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-active-disabled': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-active-hover': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-base': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-base-disabled': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-base-hover': { id: string; $type: "color"; $value: string; }; 'depth-inset': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'depth-onset': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'depth-surface-1': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'depth-surface-2': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'depth-surface-3': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; focus: { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'font-family-mono': { id: string; $type: "fontFamily"; $value: string[]; }; 'font-family-sans': { id: string; $type: "fontFamily"; $value: string[]; }; 'font-size-button': { id: string; $type: "dimension"; $value: string; }; 'font-size-l': { id: string; $type: "dimension"; $value: string; }; 'font-size-m': { id: string; $type: "dimension"; $value: string; }; 'font-size-s': { id: string; $type: "dimension"; $value: string; }; 'font-size-xl': { id: string; $type: "dimension"; $value: string; }; 'font-size-xs': { id: string; $type: "dimension"; $value: string; }; 'font-size-xxl': { id: string; $type: "dimension"; $value: string; }; 'font-size-xxs': { id: string; $type: "dimension"; $value: string; }; 'font-size-xxxl': { id: string; $type: "dimension"; $value: string; }; 'font-weight-bold': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-heavy': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-light': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-medium': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-regular': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-semibold': { id: string; $type: "fontWeight"; $value: number; }; 'motion-duration-fast-01': { id: string; $type: "duration"; $value: string; }; 'motion-duration-fast-02': { id: string; $type: "duration"; $value: string; }; 'motion-duration-moderate-01': { id: string; $type: "duration"; $value: string; }; 'motion-duration-moderate-02': { id: string; $type: "duration"; $value: string; }; 'motion-duration-slow-01': { id: string; $type: "duration"; $value: string; }; 'motion-duration-slow-02': { id: string; $type: "duration"; $value: string; }; 'motion-easing-entrance-expressive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-entrance-productive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-exit-expressive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-exit-productive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-standard-expressive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-standard-productive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'palette-blue_wave-025': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-050': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-100': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-200': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-300': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-400': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-500': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-600': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-700': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-800': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-900': { id: string; $type: "color"; $value: string; }; 'palette-blue-050': { id: string; $type: "color"; $value: string; }; 'palette-blue-100': { id: string; $type: "color"; $value: string; }; 'palette-blue-200': { id: string; $type: "color"; $value: string; }; 'palette-blue-300': { id: string; $type: "color"; $value: string; }; 'palette-blue-400': { id: string; $type: "color"; $value: string; }; 'palette-blue-500': { id: string; $type: "color"; $value: string; }; 'palette-blue-600': { id: string; $type: "color"; $value: string; }; 'palette-blue-700': { id: string; $type: "color"; $value: string; }; 'palette-blue-800': { id: string; $type: "color"; $value: string; }; 'palette-blue-900': { id: string; $type: "color"; $value: string; }; 'palette-brand-forest': { id: string; $type: "color"; $value: string; }; 'palette-brand-forest-dark': { id: string; $type: "color"; $value: string; }; 'palette-brand-forest-light': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-015': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-025': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-050': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-100': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-200': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-300': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-400': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-500': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-550': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-600': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-700': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-800': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-850': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-900': { id: string; $type: "color"; $value: string; }; 'palette-green-050': { id: string; $type: "color"; $value: string; }; 'palette-green-100': { id: string; $type: "color"; $value: string; }; 'palette-green-200': { id: string; $type: "color"; $value: string; }; 'palette-green-300': { id: string; $type: "color"; $value: string; }; 'palette-green-400': { id: string; $type: "color"; $value: string; }; 'palette-green-500': { id: string; $type: "color"; $value: string; }; 'palette-green-600': { id: string; $type: "color"; $value: string; }; 'palette-green-700': { id: string; $type: "color"; $value: string; }; 'palette-green-800': { id: string; $type: "color"; $value: string; }; 'palette-green-900': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-015': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-025': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-050': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-100': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-200': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-250': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-300': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-350': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-400': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-500': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-600': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-650': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-700': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-750': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-800': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-850': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-900': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-black': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-white': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-015': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-025': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-050': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-100': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-200': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-300': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-400': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-500': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-600': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-700': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-800': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-900': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-black': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-white': { id: string; $type: "color"; $value: string; }; 'palette-grey-050': { id: string; $type: "color"; $value: string; }; 'palette-grey-100': { id: string; $type: "color"; $value: string; }; 'palette-grey-200': { id: string; $type: "color"; $value: string; }; 'palette-grey-300': { id: string; $type: "color"; $value: string; }; 'palette-grey-400': { id: string; $type: "color"; $value: string; }; 'palette-grey-500': { id: string; $type: "color"; $value: string; }; 'palette-grey-600': { id: string; $type: "color"; $value: string; }; 'palette-grey-700': { id: string; $type: "color"; $value: string; }; 'palette-grey-800': { id: string; $type: "color"; $value: string; }; 'palette-grey-900': { id: string; $type: "color"; $value: string; }; 'palette-grey-black': { id: string; $type: "color"; $value: string; }; 'palette-grey-white': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-025': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-050': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-100': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-200': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-300': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-400': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-500': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-600': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-700': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-800': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-900': { id: string; $type: "color"; $value: string; }; 'palette-orange-050': { id: string; $type: "color"; $value: string; }; 'palette-orange-100': { id: string; $type: "color"; $value: string; }; 'palette-orange-200': { id: string; $type: "color"; $value: string; }; 'palette-orange-300': { id: string; $type: "color"; $value: string; }; 'palette-orange-400': { id: string; $type: "color"; $value: string; }; 'palette-orange-500': { id: string; $type: "color"; $value: string; }; 'palette-orange-600': { id: string; $type: "color"; $value: string; }; 'palette-orange-700': { id: string; $type: "color"; $value: string; }; 'palette-orange-800': { id: string; $type: "color"; $value: string; }; 'palette-orange-900': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-025': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-050': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-100': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-200': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-300': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-400': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-500': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-600': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-700': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-800': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-900': { id: string; $type: "color"; $value: string; }; 'palette-plum-100': { id: string; $type: "color"; $value: string; }; 'palette-plum-200': { id: string; $type: "color"; $value: string; }; 'palette-plum-300': { id: string; $type: "color"; $value: string; }; 'palette-plum-400': { id: string; $type: "color"; $value: string; }; 'palette-plum-500': { id: string; $type: "color"; $value: string; }; 'palette-plum-600': { id: string; $type: "color"; $value: string; }; 'palette-plum-700': { id: string; $type: "color"; $value: string; }; 'palette-plum-800': { id: string; $type: "color"; $value: string; }; 'palette-plum-900': { id: string; $type: "color"; $value: string; }; 'palette-plum-950': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-025': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-050': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-100': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-150': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-200': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-300': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-400': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-500': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-600': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-700': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-750': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-800': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-900': { id: string; $type: "color"; $value: string; }; 'palette-purple-050': { id: string; $type: "color"; $value: string; }; 'palette-purple-100': { id: string; $type: "color"; $value: string; }; 'palette-purple-200': { id: string; $type: "color"; $value: string; }; 'palette-purple-300': { id: string; $type: "color"; $value: string; }; 'palette-purple-400': { id: string; $type: "color"; $value: string; }; 'palette-purple-500': { id: string; $type: "color"; $value: string; }; 'palette-purple-600': { id: string; $type: "color"; $value: string; }; 'palette-purple-700': { id: string; $type: "color"; $value: string; }; 'palette-purple-800': { id: string; $type: "color"; $value: string; }; 'palette-purple-900': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-050': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-100': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-200': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-300': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-400': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-500': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-600': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-700': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-800': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-900': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-025': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-050': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-100': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-200': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-300': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-400': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-500': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-600': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-700': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-800': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-900': { id: string; $type: "color"; $value: string; }; 'palette-red-050': { id: string; $type: "color"; $value: string; }; 'palette-red-100': { id: string; $type: "color"; $value: string; }; 'palette-red-200': { id: string; $type: "color"; $value: string; }; 'palette-red-300': { id: string; $type: "color"; $value: string; }; 'palette-red-400': { id: string; $type: "color"; $value: string; }; 'palette-red-500': { id: string; $type: "color"; $value: string; }; 'palette-red-600': { id: string; $type: "color"; $value: string; }; 'palette-red-700': { id: string; $type: "color"; $value: string; }; 'palette-red-800': { id: string; $type: "color"; $value: string; }; 'palette-red-900': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-015': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-025': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-050': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-100': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-200': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-300': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-400': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-500': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-600': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-700': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-800': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-900': { id: string; $type: "color"; $value: string; }; 'palette-teal-050': { id: string; $type: "color"; $value: string; }; 'palette-teal-100': { id: string; $type: "color"; $value: string; }; 'palette-teal-200': { id: string; $type: "color"; $value: string; }; 'palette-teal-300': { id: string; $type: "color"; $value: string; }; 'palette-teal-400': { id: string; $type: "color"; $value: string; }; 'palette-teal-500': { id: string; $type: "color"; $value: string; }; 'palette-teal-600': { id: string; $type: "color"; $value: string; }; 'palette-teal-700': { id: string; $type: "color"; $value: string; }; 'palette-teal-800': { id: string; $type: "color"; $value: string; }; 'palette-teal-900': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-025': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-050': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-100': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-200': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-300': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-400': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-500': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-600': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-700': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-800': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-900': { id: string; $type: "color"; $value: string; }; 'palette-yellow-050': { id: string; $type: "color"; $value: string; }; 'palette-yellow-100': { id: string; $type: "color"; $value: string; }; 'palette-yellow-200': { id: string; $type: "color"; $value: string; }; 'palette-yellow-300': { id: string; $type: "color"; $value: string; }; 'palette-yellow-400': { id: string; $type: "color"; $value: string; }; 'palette-yellow-500': { id: string; $type: "color"; $value: string; }; 'palette-yellow-600': { id: string; $type: "color"; $value: string; }; 'palette-yellow-700': { id: string; $type: "color"; $value: string; }; 'palette-yellow-800': { id: string; $type: "color"; $value: string; }; 'palette-yellow-900': { id: string; $type: "color"; $value: string; }; 'radius-2': { id: string; $type: "dimension"; $value: string; }; 'radius-3': { id: string; $type: "dimension"; $value: string; }; 'radius-4': { id: string; $type: "dimension"; $value: string; }; 'radius-6': { id: string; $type: "dimension"; $value: string; }; 'radius-8': { id: string; $type: "dimension"; $value: string; }; 'radius-10': { id: string; $type: "dimension"; $value: string; }; 'radius-button-medium': { id: string; $type: "dimension"; $value: string; }; 'radius-button-small': { id: string; $type: "dimension"; $value: string; }; 'radius-dropdown': { id: string; $type: "dimension"; $value: string; }; 'radius-full': { id: string; $type: "dimension"; $value: string; }; 'radius-labels': { id: string; $type: "dimension"; $value: string; }; 'space-0': { id: string; $type: "dimension"; $value: string; }; 'space-025': { id: string; $type: "dimension"; $value: string; }; 'space-050': { id: string; $type: "dimension"; $value: string; }; 'space-075': { id: string; $type: "dimension"; $value: string; }; 'space-100': { id: string; $type: "dimension"; $value: string; }; 'space-125': { id: string; $type: "dimension"; $value: string; }; 'space-150': { id: string; $type: "dimension"; $value: string; }; 'space-175': { id: string; $type: "dimension"; $value: string; }; 'space-200': { id: string; $type: "dimension"; $value: string; }; 'space-225': { id: string; $type: "dimension"; $value: string; }; 'space-250': { id: string; $type: "dimension"; $value: string; }; 'space-275': { id: string; $type: "dimension"; $value: string; }; 'space-300': { id: string; $type: "dimension"; $value: string; }; 'space-350': { id: string; $type: "dimension"; $value: string; }; 'space-400': { id: string; $type: "dimension"; $value: string; }; 'space-450': { id: string; $type: "dimension"; $value: string; }; 'space-500': { id: string; $type: "dimension"; $value: string; }; 'space-600': { id: string; $type: "dimension"; $value: string; }; 'space-800': { id: string; $type: "dimension"; $value: string; }; 'space-900': { id: string; $type: "dimension"; $value: string; }; 'space-1000': { id: string; $type: "dimension"; $value: string; }; 'space-1200': { id: string; $type: "dimension"; $value: string; }; 'space-1600': { id: string; $type: "dimension"; $value: string; }; 'space-2000': { id: string; $type: "dimension"; $value: string; }; 'space-2400': { id: string; $type: "dimension"; $value: string; }; 'space-2800': { id: string; $type: "dimension"; $value: string; }; 'space-3200': { id: string; $type: "dimension"; $value: string; }; 'space-icon-lg': { id: string; $type: "dimension"; $value: string; }; 'space-icon-md': { id: string; $type: "dimension"; $value: string; }; 'space-icon-sm': { id: string; $type: "dimension"; $value: string; }; 'space-icon-v2-lg': { id: string; $type: "dimension"; $value: string; }; 'space-icon-v2-md': { id: string; $type: "dimension"; $value: string; }; 'space-icon-v2-sm': { id: string; $type: "dimension"; $value: string; }; 'space-icon-v2-xl': { id: string; $type: "dimension"; $value: string; }; 'space-icon-xl': { id: string; $type: "dimension"; $value: string; }; 'space-icon-xs': { id: string; $type: "dimension"; $value: string; }; 'space-icon-xxs': { id: string; $type: "dimension"; $value: string; }; 'space-padding-button-medium': { id: string; $type: "dimension"; $value: string; }; 'space-padding-button-small': { id: string; $type: "dimension"; $value: string; }; 'space-padding-header': { id: string; $type: "dimension"; $value: string; }; 'text-brand-h1': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h2': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h3': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h4': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h5': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h6': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-label': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-p': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-p-small': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-p-subheader': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-code': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-h1': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-h2': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-h3': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-h4': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-label': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-label-secondary': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-link': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-link-secondary': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-p': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-p-active': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-p-secondary': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-ps': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-ps-active': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-pxs': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-pxs-active': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-pxs-secondary': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; }> & { 'ai-fill-mix-amount'?: UnknownRecord | undefined; 'ai-ring-stop-mix-amount-01'?: UnknownRecord | undefined; 'ai-ring-stop-mix-amount-02'?: UnknownRecord | undefined; 'ai-ring-stop-mix-amount-03'?: UnknownRecord | undefined; 'border-0'?: UnknownRecord | undefined; 'border-width-025'?: UnknownRecord | undefined; 'border-width-050'?: UnknownRecord | undefined; 'border-width-0125'?: UnknownRecord | undefined; 'color-ai-fill-stop-01'?: UnknownRecord | undefined; 'color-ai-fill-stop-02'?: UnknownRecord | undefined; 'color-ai-fill-surface'?: UnknownRecord | undefined; 'color-ai-ring-fade'?: UnknownRecord | undefined; 'color-ai-ring-gap'?: UnknownRecord | undefined; 'color-ai-ring-stop-01'?: UnknownRecord | undefined; 'color-ai-ring-stop-02'?: UnknownRecord | undefined; 'color-ai-ring-stop-03'?: UnknownRecord | undefined; 'color-background-default'?: UnknownRecord | undefined; 'color-banner-caution-background'?: UnknownRecord | undefined; 'color-banner-caution-border'?: UnknownRecord | undefined; 'color-banner-default-background'?: UnknownRecord | undefined; 'color-banner-default-border'?: UnknownRecord | undefined; 'color-banner-error-background'?: UnknownRecord | undefined; 'color-banner-error-border'?: UnknownRecord | undefined; 'color-banner-feature-background'?: UnknownRecord | undefined; 'color-banner-feature-border'?: UnknownRecord | undefined; 'color-banner-information-background'?: UnknownRecord | undefined; 'color-banner-information-border'?: UnknownRecord | undefined; 'color-banner-success-background'?: UnknownRecord | undefined; 'color-banner-success-border'?: UnknownRecord | undefined; 'color-banner-warning-background'?: UnknownRecord | undefined; 'color-border-accent'?: UnknownRecord | undefined; 'color-border-accent-disabled'?: UnknownRecord | undefined; 'color-border-accent-hover'?: UnknownRecord | undefined; 'color-border-accent-minimal'?: UnknownRecord | undefined; 'color-border-accent-subtle'?: UnknownRecord | undefined; 'color-border-accent-subtle-hover'?: UnknownRecord | undefined; 'color-border-active'?: UnknownRecord | undefined; 'color-border-active-hover'?: UnknownRecord | undefined; 'color-border-base'?: UnknownRecord | undefined; 'color-border-base-hover'?: UnknownRecord | undefined; 'color-border-bold'?: UnknownRecord | undefined; 'color-border-bold-hover'?: UnknownRecord | undefined; 'color-border-caution'?: UnknownRecord | undefined; 'color-border-caution-disabled'?: UnknownRecord | undefined; 'color-border-caution-hover'?: UnknownRecord | undefined; 'color-border-caution-minimal'?: UnknownRecord | undefined; 'color-border-caution-subtle'?: UnknownRecord | undefined; 'color-border-caution-subtle-hover'?: UnknownRecord | undefined; 'color-border-critical'?: UnknownRecord | undefined; 'color-border-critical-disabled'?: UnknownRecord | undefined; 'color-border-critical-hover'?: UnknownRecord | undefined; 'color-border-critical-minimal'?: UnknownRecord | undefined; 'color-border-critical-subtle'?: UnknownRecord | undefined; 'color-border-critical-subtle-hover'?: UnknownRecord | undefined; 'color-border-dropdown'?: UnknownRecord | undefined; 'color-border-feature-border-information'?: UnknownRecord | undefined; 'color-border-feature-border-information-disabled'?: UnknownRecord | undefined; 'color-border-feature-border-information-hover'?: UnknownRecord | undefined; 'color-border-feature-border-information-minimal'?: UnknownRecord | undefined; 'color-border-feature-border-information-subtle'?: UnknownRecord | undefined; 'color-border-feature-border-information-subtle-hover'?: UnknownRecord | undefined; 'color-border-focus'?: UnknownRecord | undefined; 'color-border-information'?: UnknownRecord | undefined; 'color-border-information-disabled'?: UnknownRecord | undefined; 'color-border-information-hover'?: UnknownRecord | undefined; 'color-border-information-minimal'?: UnknownRecord | undefined; 'color-border-information-subtle'?: UnknownRecord | undefined; 'color-border-information-subtle-hover'?: UnknownRecord | undefined; 'color-border-invert'?: UnknownRecord | undefined; 'color-border-minimal'?: UnknownRecord | undefined; 'color-border-minimal-hover'?: UnknownRecord | undefined; 'color-border-success'?: UnknownRecord | undefined; 'color-border-success-disabled'?: UnknownRecord | undefined; 'color-border-success-hover'?: UnknownRecord | undefined; 'color-border-success-minimal'?: UnknownRecord | undefined; 'color-border-success-subtle'?: UnknownRecord | undefined; 'color-border-success-subtle-hover'?: UnknownRecord | undefined; 'color-button-surface-invert'?: UnknownRecord | undefined; 'color-button-surface-invert-hover'?: UnknownRecord | undefined; 'color-chart-base-1'?: UnknownRecord | undefined; 'color-chart-base-2'?: UnknownRecord | undefined; 'color-chart-base-3'?: UnknownRecord | undefined; 'color-chart-base-4'?: UnknownRecord | undefined; 'color-chart-positive-1'?: UnknownRecord | undefined; 'color-chart-positive-2'?: UnknownRecord | undefined; 'color-chart-positive-3'?: UnknownRecord | undefined; 'color-chart-positive-4'?: UnknownRecord | undefined; 'color-chart-secondary-1'?: UnknownRecord | undefined; 'color-chart-secondary-2'?: UnknownRecord | undefined; 'color-chart-secondary-3'?: UnknownRecord | undefined; 'color-chart-secondary-4'?: UnknownRecord | undefined; 'color-date_picker-background'?: UnknownRecord | undefined; 'color-date_picker-background-hover'?: UnknownRecord | undefined; 'color-date_picker-background-selected'?: UnknownRecord | undefined; 'color-icon-accent'?: UnknownRecord | undefined; 'color-icon-accent-disabled'?: UnknownRecord | undefined; 'color-icon-accent-hover'?: UnknownRecord | undefined; 'color-icon-accent-invert-disabled'?: UnknownRecord | undefined; 'color-icon-base'?: UnknownRecord | undefined; 'color-icon-base-disabled'?: UnknownRecord | undefined; 'color-icon-base-hover'?: UnknownRecord | undefined; 'color-icon-bold'?: UnknownRecord | undefined; 'color-icon-button'?: UnknownRecord | undefined; 'color-icon-caution'?: UnknownRecord | undefined; 'color-icon-caution-disabled'?: UnknownRecord | undefined; 'color-icon-critical'?: UnknownRecord | undefined; 'color-icon-critical-disabled'?: UnknownRecord | undefined; 'color-icon-critical-hover'?: UnknownRecord | undefined; 'color-icon-critical-invert-disabled'?: UnknownRecord | undefined; 'color-icon-feature'?: UnknownRecord | undefined; 'color-icon-feature-disabled'?: UnknownRecord | undefined; 'color-icon-information'?: UnknownRecord | undefined; 'color-icon-information-disabled'?: UnknownRecord | undefined; 'color-icon-invert'?: UnknownRecord | undefined; 'color-icon-minimal'?: UnknownRecord | undefined; 'color-icon-navigation'?: UnknownRecord | undefined; 'color-icon-subtle'?: UnknownRecord | undefined; 'color-icon-success'?: UnknownRecord | undefined; 'color-icon-success-disabled'?: UnknownRecord | undefined; 'color-icon-white'?: UnknownRecord | undefined; 'color-label-blue-background'?: UnknownRecord | undefined; 'color-label-blue-icon'?: UnknownRecord | undefined; 'color-label-blue-text'?: UnknownRecord | undefined; 'color-label-clementine-background'?: UnknownRecord | undefined; 'color-label-clementine-icon'?: UnknownRecord | undefined; 'color-label-clementine-text'?: UnknownRecord | undefined; 'color-label-green-background'?: UnknownRecord | undefined; 'color-label-green-icon'?: UnknownRecord | undefined; 'color-label-green-text'?: UnknownRecord | undefined; 'color-label-grey-background'?: UnknownRecord | undefined; 'color-label-grey-icon'?: UnknownRecord | undefined; 'color-label-grey-text'?: UnknownRecord | undefined; 'color-label-plum-background'?: UnknownRecord | undefined; 'color-label-plum-icon'?: UnknownRecord | undefined; 'color-label-plum-text'?: UnknownRecord | undefined; 'color-label-purple-background'?: UnknownRecord | undefined; 'color-label-purple-icon'?: UnknownRecord | undefined; 'color-label-purple-text'?: UnknownRecord | undefined; 'color-label-raspberry-background'?: UnknownRecord | undefined; 'color-label-raspberry-icon'?: UnknownRecord | undefined; 'color-label-raspberry-text'?: UnknownRecord | undefined; 'color-label-red-background'?: UnknownRecord | undefined; 'color-label-red-icon'?: UnknownRecord | undefined; 'color-label-red-text'?: UnknownRecord | undefined; 'color-label-teal-background'?: UnknownRecord | undefined; 'color-label-teal-icon'?: UnknownRecord | undefined; 'color-label-teal-text'?: UnknownRecord | undefined; 'color-label-yellow-background'?: UnknownRecord | undefined; 'color-label-yellow-icon'?: UnknownRecord | undefined; 'color-label-yellow-text'?: UnknownRecord | undefined; 'color-navigation-background'?: UnknownRecord | undefined; 'color-navigation-background-hover'?: UnknownRecord | undefined; 'color-navigation-background-selected'?: UnknownRecord | undefined; 'color-navigation-icon'?: UnknownRecord | undefined; 'color-navigation-icon-collapsed'?: UnknownRecord | undefined; 'color-navigation-icon-selected'?: UnknownRecord | undefined; 'color-navigation-text'?: UnknownRecord | undefined; 'color-navigation-text-selected'?: UnknownRecord | undefined; 'color-snackbar-default-background'?: UnknownRecord | undefined; 'color-snackbar-default-close-background-hover'?: UnknownRecord | undefined; 'color-snackbar-error-background'?: UnknownRecord | undefined; 'color-snackbar-error-close-background-hover'?: UnknownRecord | undefined; 'color-snackbar-success-background'?: UnknownRecord | undefined; 'color-snackbar-success-close-background-hover'?: UnknownRecord | undefined; 'color-status-blue'?: UnknownRecord | undefined; 'color-status-green'?: UnknownRecord | undefined; 'color-status-purple'?: UnknownRecord | undefined; 'color-status-red'?: UnknownRecord | undefined; 'color-status-yellow'?: UnknownRecord | undefined; 'color-surface-accent'?: UnknownRecord | undefined; 'color-surface-accent-disabled'?: UnknownRecord | undefined; 'color-surface-accent-hover'?: UnknownRecord | undefined; 'color-surface-accent-minimal'?: UnknownRecord | undefined; 'color-surface-accent-subtle'?: UnknownRecord | undefined; 'color-surface-active'?: UnknownRecord | undefined; 'color-surface-active-disabled'?: UnknownRecord | undefined; 'color-surface-active-hover'?: UnknownRecord | undefined; 'color-surface-base'?: UnknownRecord | undefined; 'color-surface-base-disabled'?: UnknownRecord | undefined; 'color-surface-base-hover'?: UnknownRecord | undefined; 'color-surface-bold'?: UnknownRecord | undefined; 'color-surface-bold-hover'?: UnknownRecord | undefined; 'color-surface-caution'?: UnknownRecord | undefined; 'color-surface-caution-bold'?: UnknownRecord | undefined; 'color-surface-caution-disabled'?: UnknownRecord | undefined; 'color-surface-caution-hover'?: UnknownRecord | undefined; 'color-surface-caution-minimal'?: UnknownRecord | undefined; 'color-surface-caution-subtle'?: UnknownRecord | undefined; 'color-surface-caution-subtle-hover'?: UnknownRecord | undefined; 'color-surface-critical'?: UnknownRecord | undefined; 'color-surface-critical-bold'?: UnknownRecord | undefined; 'color-surface-critical-disabled'?: UnknownRecord | undefined; 'color-surface-critical-hover'?: UnknownRecord | undefined; 'color-surface-critical-minimal'?: UnknownRecord | undefined; 'color-surface-critical-subtle'?: UnknownRecord | undefined; 'color-surface-critical-subtle-hover'?: UnknownRecord | undefined; 'color-surface-information'?: UnknownRecord | undefined; 'color-surface-information-bold'?: UnknownRecord | undefined; 'color-surface-information-disabled'?: UnknownRecord | undefined; 'color-surface-information-hover'?: UnknownRecord | undefined; 'color-surface-information-minimal'?: UnknownRecord | undefined; 'color-surface-information-subtle'?: UnknownRecord | undefined; 'color-surface-information-subtle-hover'?: UnknownRecord | undefined; 'color-surface-invert'?: UnknownRecord | undefined; 'color-surface-invert-bold'?: UnknownRecord | undefined; 'color-surface-invert-bold-hover'?: UnknownRecord | undefined; 'color-surface-invert-hover'?: UnknownRecord | undefined; 'color-surface-invert-subtle'?: UnknownRecord | undefined; 'color-surface-subtle'?: UnknownRecord | undefined; 'color-surface-subtle-disabled'?: UnknownRecord | undefined; 'color-surface-subtle-hover'?: UnknownRecord | undefined; 'color-surface-success'?: UnknownRecord | undefined; 'color-surface-success-bold'?: UnknownRecord | undefined; 'color-surface-success-disabled'?: UnknownRecord | undefined; 'color-surface-success-hover'?: UnknownRecord | undefined; 'color-surface-success-minimal'?: UnknownRecord | undefined; 'color-surface-success-subtle'?: UnknownRecord | undefined; 'color-surface-success-subtle-hover'?: UnknownRecord | undefined; 'color-surface-workflow-data'?: UnknownRecord | undefined; 'color-surface-workflow-delays'?: UnknownRecord | undefined; 'color-surface-workflow-flowcontrol'?: UnknownRecord | undefined; 'color-surface-workflow-messages'?: UnknownRecord | undefined; 'color-text-accent'?: UnknownRecord | undefined; 'color-text-accent-bold'?: UnknownRecord | undefined; 'color-text-accent-disabled'?: UnknownRecord | undefined; 'color-text-accent-hover'?: UnknownRecord | undefined; 'color-text-accent-invert-disabled'?: UnknownRecord | undefined; 'color-text-active'?: UnknownRecord | undefined; 'color-text-base'?: UnknownRecord | undefined; 'color-text-base-disabled'?: UnknownRecord | undefined; 'color-text-base-hover'?: UnknownRecord | undefined; 'color-text-bold'?: UnknownRecord | undefined; 'color-text-bold-hover'?: UnknownRecord | undefined; 'color-text-caution'?: UnknownRecord | undefined; 'color-text-caution-bold'?: UnknownRecord | undefined; 'color-text-caution-disabled'?: UnknownRecord | undefined; 'color-text-caution-hover'?: UnknownRecord | undefined; 'color-text-caution-subtle'?: UnknownRecord | undefined; 'color-text-code'?: UnknownRecord | undefined; 'color-text-critical'?: UnknownRecord | undefined; 'color-text-critical-bold'?: UnknownRecord | undefined; 'color-text-critical-disabled'?: UnknownRecord | undefined; 'color-text-critical-hover'?: UnknownRecord | undefined; 'color-text-critical-invert-disabled'?: UnknownRecord | undefined; 'color-text-critical-subtle'?: UnknownRecord | undefined; 'color-text-information'?: UnknownRecord | undefined; 'color-text-information-bold'?: UnknownRecord | undefined; 'color-text-information-disabled'?: UnknownRecord | undefined; 'color-text-information-hover'?: UnknownRecord | undefined; 'color-text-information-subtle'?: UnknownRecord | undefined; 'color-text-invert'?: UnknownRecord | undefined; 'color-text-minimal'?: UnknownRecord | undefined; 'color-text-placeholder'?: UnknownRecord | undefined; 'color-text-subtle'?: UnknownRecord | undefined; 'color-text-success'?: UnknownRecord | undefined; 'color-text-success-bold'?: UnknownRecord | undefined; 'color-text-success-disabled'?: UnknownRecord | undefined; 'color-text-success-hover'?: UnknownRecord | undefined; 'color-text-success-subtle'?: UnknownRecord | undefined; 'color-text-white'?: UnknownRecord | undefined; 'color-toggle-surface-active'?: UnknownRecord | undefined; 'color-toggle-surface-active-disabled'?: UnknownRecord | undefined; 'color-toggle-surface-active-hover'?: UnknownRecord | undefined; 'color-toggle-surface-base'?: UnknownRecord | undefined; 'color-toggle-surface-base-disabled'?: UnknownRecord | undefined; 'color-toggle-surface-base-hover'?: UnknownRecord | undefined; 'depth-inset'?: UnknownRecord | undefined; 'depth-onset'?: UnknownRecord | undefined; 'depth-surface-1'?: UnknownRecord | undefined; 'depth-surface-2'?: UnknownRecord | undefined; 'depth-surface-3'?: UnknownRecord | undefined; focus?: UnknownRecord | undefined; 'font-family-mono'?: UnknownRecord | undefined; 'font-family-sans'?: UnknownRecord | undefined; 'font-size-button'?: UnknownRecord | undefined; 'font-size-l'?: UnknownRecord | undefined; 'font-size-m'?: UnknownRecord | undefined; 'font-size-s'?: UnknownRecord | undefined; 'font-size-xl'?: UnknownRecord | undefined; 'font-size-xs'?: UnknownRecord | undefined; 'font-size-xxl'?: UnknownRecord | undefined; 'font-size-xxs'?: UnknownRecord | undefined; 'font-size-xxxl'?: UnknownRecord | undefined; 'font-weight-bold'?: UnknownRecord | undefined; 'font-weight-heavy'?: UnknownRecord | undefined; 'font-weight-light'?: UnknownRecord | undefined; 'font-weight-medium'?: UnknownRecord | undefined; 'font-weight-regular'?: UnknownRecord | undefined; 'font-weight-semibold'?: UnknownRecord | undefined; 'motion-duration-fast-01'?: UnknownRecord | undefined; 'motion-duration-fast-02'?: UnknownRecord | undefined; 'motion-duration-moderate-01'?: UnknownRecord | undefined; 'motion-duration-moderate-02'?: UnknownRecord | undefined; 'motion-duration-slow-01'?: UnknownRecord | undefined; 'motion-duration-slow-02'?: UnknownRecord | undefined; 'motion-easing-entrance-expressive'?: UnknownRecord | undefined; 'motion-easing-entrance-productive'?: UnknownRecord | undefined; 'motion-easing-exit-expressive'?: UnknownRecord | undefined; 'motion-easing-exit-productive'?: UnknownRecord | undefined; 'motion-easing-standard-expressive'?: UnknownRecord | undefined; 'motion-easing-standard-productive'?: UnknownRecord | undefined; 'palette-blue_wave-025'?: UnknownRecord | undefined; 'palette-blue_wave-050'?: UnknownRecord | undefined; 'palette-blue_wave-100'?: UnknownRecord | undefined; 'palette-blue_wave-200'?: UnknownRecord | undefined; 'palette-blue_wave-300'?: UnknownRecord | undefined; 'palette-blue_wave-400'?: UnknownRecord | undefined; 'palette-blue_wave-500'?: UnknownRecord | undefined; 'palette-blue_wave-600'?: UnknownRecord | undefined; 'palette-blue_wave-700'?: UnknownRecord | undefined; 'palette-blue_wave-800'?: UnknownRecord | undefined; 'palette-blue_wave-900'?: UnknownRecord | undefined; 'palette-blue-050'?: UnknownRecord | undefined; 'palette-blue-100'?: UnknownRecord | undefined; 'palette-blue-200'?: UnknownRecord | undefined; 'palette-blue-300'?: UnknownRecord | undefined; 'palette-blue-400'?: UnknownRecord | undefined; 'palette-blue-500'?: UnknownRecord | undefined; 'palette-blue-600'?: UnknownRecord | undefined; 'palette-blue-700'?: UnknownRecord | undefined; 'palette-blue-800'?: UnknownRecord | undefined; 'palette-blue-900'?: UnknownRecord | undefined; 'palette-brand-forest'?: UnknownRecord | undefined; 'palette-brand-forest-dark'?: UnknownRecord | undefined; 'palette-brand-forest-light'?: UnknownRecord | undefined; 'palette-green_verdant-015'?: UnknownRecord | undefined; 'palette-green_verdant-025'?: UnknownRecord | undefined; 'palette-green_verdant-050'?: UnknownRecord | undefined; 'palette-green_verdant-100'?: UnknownRecord | undefined; 'palette-green_verdant-200'?: UnknownRecord | undefined; 'palette-green_verdant-300'?: UnknownRecord | undefined; 'palette-green_verdant-400'?: UnknownRecord | undefined; 'palette-green_verdant-500'?: UnknownRecord | undefined; 'palette-green_verdant-550'?: UnknownRecord | undefined; 'palette-green_verdant-600'?: UnknownRecord | undefined; 'palette-green_verdant-700'?: UnknownRecord | undefined; 'palette-green_verdant-800'?: UnknownRecord | undefined; 'palette-green_verdant-850'?: UnknownRecord | undefined; 'palette-green_verdant-900'?: UnknownRecord | undefined; 'palette-green-050'?: UnknownRecord | undefined; 'palette-green-100'?: UnknownRecord | undefined; 'palette-green-200'?: UnknownRecord | undefined; 'palette-green-300'?: UnknownRecord | undefined; 'palette-green-400'?: UnknownRecord | undefined; 'palette-green-500'?: UnknownRecord | undefined; 'palette-green-600'?: UnknownRecord | undefined; 'palette-green-700'?: UnknownRecord | undefined; 'palette-green-800'?: UnknownRecord | undefined; 'palette-green-900'?: UnknownRecord | undefined; 'palette-grey_charcoal-015'?: UnknownRecord | undefined; 'palette-grey_charcoal-025'?: UnknownRecord | undefined; 'palette-grey_charcoal-050'?: UnknownRecord | undefined; 'palette-grey_charcoal-100'?: UnknownRecord | undefined; 'palette-grey_charcoal-200'?: UnknownRecord | undefined; 'palette-grey_charcoal-250'?: UnknownRecord | undefined; 'palette-grey_charcoal-300'?: UnknownRecord | undefined; 'palette-grey_charcoal-350'?: UnknownRecord | undefined; 'palette-grey_charcoal-400'?: UnknownRecord | undefined; 'palette-grey_charcoal-500'?: UnknownRecord | undefined; 'palette-grey_charcoal-600'?: UnknownRecord | undefined; 'palette-grey_charcoal-650'?: UnknownRecord | undefined; 'palette-grey_charcoal-700'?: UnknownRecord | undefined; 'palette-grey_charcoal-750'?: UnknownRecord | undefined; 'palette-grey_charcoal-800'?: UnknownRecord | undefined; 'palette-grey_charcoal-850'?: UnknownRecord | undefined; 'palette-grey_charcoal-900'?: UnknownRecord | undefined; 'palette-grey_charcoal-black'?: UnknownRecord | undefined; 'palette-grey_charcoal-white'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-015'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-025'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-050'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-100'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-200'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-300'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-400'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-500'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-600'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-700'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-800'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-900'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-black'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-white'?: UnknownRecord | undefined; 'palette-grey-050'?: UnknownRecord | undefined; 'palette-grey-100'?: UnknownRecord | undefined; 'palette-grey-200'?: UnknownRecord | undefined; 'palette-grey-300'?: UnknownRecord | undefined; 'palette-grey-400'?: UnknownRecord | undefined; 'palette-grey-500'?: UnknownRecord | undefined; 'palette-grey-600'?: UnknownRecord | undefined; 'palette-grey-700'?: UnknownRecord | undefined; 'palette-grey-800'?: UnknownRecord | undefined; 'palette-grey-900'?: UnknownRecord | undefined; 'palette-grey-black'?: UnknownRecord | undefined; 'palette-grey-white'?: UnknownRecord | undefined; 'palette-orange_zest-025'?: UnknownRecord | undefined; 'palette-orange_zest-050'?: UnknownRecord | undefined; 'palette-orange_zest-100'?: UnknownRecord | undefined; 'palette-orange_zest-200'?: UnknownRecord | undefined; 'palette-orange_zest-300'?: UnknownRecord | undefined; 'palette-orange_zest-400'?: UnknownRecord | undefined; 'palette-orange_zest-500'?: UnknownRecord | undefined; 'palette-orange_zest-600'?: UnknownRecord | undefined; 'palette-orange_zest-700'?: UnknownRecord | undefined; 'palette-orange_zest-800'?: UnknownRecord | undefined; 'palette-orange_zest-900'?: UnknownRecord | undefined; 'palette-orange-050'?: UnknownRecord | undefined; 'palette-orange-100'?: UnknownRecord | undefined; 'palette-orange-200'?: UnknownRecord | undefined; 'palette-orange-300'?: UnknownRecord | undefined; 'palette-orange-400'?: UnknownRecord | undefined; 'palette-orange-500'?: UnknownRecord | undefined; 'palette-orange-600'?: UnknownRecord | undefined; 'palette-orange-700'?: UnknownRecord | undefined; 'palette-orange-800'?: UnknownRecord | undefined; 'palette-orange-900'?: UnknownRecord | undefined; 'palette-pink_blush-025'?: UnknownRecord | undefined; 'palette-pink_blush-050'?: UnknownRecord | undefined; 'palette-pink_blush-100'?: UnknownRecord | undefined; 'palette-pink_blush-200'?: UnknownRecord | undefined; 'palette-pink_blush-300'?: UnknownRecord | undefined; 'palette-pink_blush-400'?: UnknownRecord | undefined; 'palette-pink_blush-500'?: UnknownRecord | undefined; 'palette-pink_blush-600'?: UnknownRecord | undefined; 'palette-pink_blush-700'?: UnknownRecord | undefined; 'palette-pink_blush-800'?: UnknownRecord | undefined; 'palette-pink_blush-900'?: UnknownRecord | undefined; 'palette-plum-100'?: UnknownRecord | undefined; 'palette-plum-200'?: UnknownRecord | undefined; 'palette-plum-300'?: UnknownRecord | undefined; 'palette-plum-400'?: UnknownRecord | undefined; 'palette-plum-500'?: UnknownRecord | undefined; 'palette-plum-600'?: UnknownRecord | undefined; 'palette-plum-700'?: UnknownRecord | undefined; 'palette-plum-800'?: UnknownRecord | undefined; 'palette-plum-900'?: UnknownRecord | undefined; 'palette-plum-950'?: UnknownRecord | undefined; 'palette-purple_nova-025'?: UnknownRecord | undefined; 'palette-purple_nova-050'?: UnknownRecord | undefined; 'palette-purple_nova-100'?: UnknownRecord | undefined; 'palette-purple_nova-150'?: UnknownRecord | undefined; 'palette-purple_nova-200'?: UnknownRecord | undefined; 'palette-purple_nova-300'?: UnknownRecord | undefined; 'palette-purple_nova-400'?: UnknownRecord | undefined; 'palette-purple_nova-500'?: UnknownRecord | undefined; 'palette-purple_nova-600'?: UnknownRecord | undefined; 'palette-purple_nova-700'?: UnknownRecord | undefined; 'palette-purple_nova-750'?: UnknownRecord | undefined; 'palette-purple_nova-800'?: UnknownRecord | undefined; 'palette-purple_nova-900'?: UnknownRecord | undefined; 'palette-purple-050'?: UnknownRecord | undefined; 'palette-purple-100'?: UnknownRecord | undefined; 'palette-purple-200'?: UnknownRecord | undefined; 'palette-purple-300'?: UnknownRecord | undefined; 'palette-purple-400'?: UnknownRecord | undefined; 'palette-purple-500'?: UnknownRecord | undefined; 'palette-purple-600'?: UnknownRecord | undefined; 'palette-purple-700'?: UnknownRecord | undefined; 'palette-purple-800'?: UnknownRecord | undefined; 'palette-purple-900'?: UnknownRecord | undefined; 'palette-raspberry-050'?: UnknownRecord | undefined; 'palette-raspberry-100'?: UnknownRecord | undefined; 'palette-raspberry-200'?: UnknownRecord | undefined; 'palette-raspberry-300'?: UnknownRecord | undefined; 'palette-raspberry-400'?: UnknownRecord | undefined; 'palette-raspberry-500'?: UnknownRecord | undefined; 'palette-raspberry-600'?: UnknownRecord | undefined; 'palette-raspberry-700'?: UnknownRecord | undefined; 'palette-raspberry-800'?: UnknownRecord | undefined; 'palette-raspberry-900'?: UnknownRecord | undefined; 'palette-red_flame-025'?: UnknownRecord | undefined; 'palette-red_flame-050'?: UnknownRecord | undefined; 'palette-red_flame-100'?: UnknownRecord | undefined; 'palette-red_flame-200'?: UnknownRecord | undefined; 'palette-red_flame-300'?: UnknownRecord | undefined; 'palette-red_flame-400'?: UnknownRecord | undefined; 'palette-red_flame-500'?: UnknownRecord | undefined; 'palette-red_flame-600'?: UnknownRecord | undefined; 'palette-red_flame-700'?: UnknownRecord | undefined; 'palette-red_flame-800'?: UnknownRecord | undefined; 'palette-red_flame-900'?: UnknownRecord | undefined; 'palette-red-050'?: UnknownRecord | undefined; 'palette-red-100'?: UnknownRecord | undefined; 'palette-red-200'?: UnknownRecord | undefined; 'palette-red-300'?: UnknownRecord | undefined; 'palette-red-400'?: UnknownRecord | undefined; 'palette-red-500'?: UnknownRecord | undefined; 'palette-red-600'?: UnknownRecord | undefined; 'palette-red-700'?: UnknownRecord | undefined; 'palette-red-800'?: UnknownRecord | undefined; 'palette-red-900'?: UnknownRecord | undefined; 'palette-teal_spruce-015'?: UnknownRecord | undefined; 'palette-teal_spruce-025'?: UnknownRecord | undefined; 'palette-teal_spruce-050'?: UnknownRecord | undefined; 'palette-teal_spruce-100'?: UnknownRecord | undefined; 'palette-teal_spruce-200'?: UnknownRecord | undefined; 'palette-teal_spruce-300'?: UnknownRecord | undefined; 'palette-teal_spruce-400'?: UnknownRecord | undefined; 'palette-teal_spruce-500'?: UnknownRecord | undefined; 'palette-teal_spruce-600'?: UnknownRecord | undefined; 'palette-teal_spruce-700'?: UnknownRecord | undefined; 'palette-teal_spruce-800'?: UnknownRecord | undefined; 'palette-teal_spruce-900'?: UnknownRecord | undefined; 'palette-teal-050'?: UnknownRecord | undefined; 'palette-teal-100'?: UnknownRecord | undefined; 'palette-teal-200'?: UnknownRecord | undefined; 'palette-teal-300'?: UnknownRecord | undefined; 'palette-teal-400'?: UnknownRecord | undefined; 'palette-teal-500'?: UnknownRecord | undefined; 'palette-teal-600'?: UnknownRecord | undefined; 'palette-teal-700'?: UnknownRecord | undefined; 'palette-teal-800'?: UnknownRecord | undefined; 'palette-teal-900'?: UnknownRecord | undefined; 'palette-yellow_mustard-025'?: UnknownRecord | undefined; 'palette-yellow_mustard-050'?: UnknownRecord | undefined; 'palette-yellow_mustard-100'?: UnknownRecord | undefined; 'palette-yellow_mustard-200'?: UnknownRecord | undefined; 'palette-yellow_mustard-300'?: UnknownRecord | undefined; 'palette-yellow_mustard-400'?: UnknownRecord | undefined; 'palette-yellow_mustard-500'?: UnknownRecord | undefined; 'palette-yellow_mustard-600'?: UnknownRecord | undefined; 'palette-yellow_mustard-700'?: UnknownRecord | undefined; 'palette-yellow_mustard-800'?: UnknownRecord | undefined; 'palette-yellow_mustard-900'?: UnknownRecord | undefined; 'palette-yellow-050'?: UnknownRecord | undefined; 'palette-yellow-100'?: UnknownRecord | undefined; 'palette-yellow-200'?: UnknownRecord | undefined; 'palette-yellow-300'?: UnknownRecord | undefined; 'palette-yellow-400'?: UnknownRecord | undefined; 'palette-yellow-500'?: UnknownRecord | undefined; 'palette-yellow-600'?: UnknownRecord | undefined; 'palette-yellow-700'?: UnknownRecord | undefined; 'palette-yellow-800'?: UnknownRecord | undefined; 'palette-yellow-900'?: UnknownRecord | undefined; 'radius-2'?: UnknownRecord | undefined; 'radius-3'?: UnknownRecord | undefined; 'radius-4'?: UnknownRecord | undefined; 'radius-6'?: UnknownRecord | undefined; 'radius-8'?: UnknownRecord | undefined; 'radius-10'?: UnknownRecord | undefined; 'radius-button-medium'?: UnknownRecord | undefined; 'radius-button-small'?: UnknownRecord | undefined; 'radius-dropdown'?: UnknownRecord | undefined; 'radius-full'?: UnknownRecord | undefined; 'radius-labels'?: UnknownRecord | undefined; 'space-0'?: UnknownRecord | undefined; 'space-025'?: UnknownRecord | undefined; 'space-050'?: UnknownRecord | undefined; 'space-075'?: UnknownRecord | undefined; 'space-100'?: UnknownRecord | undefined; 'space-125'?: UnknownRecord | undefined; 'space-150'?: UnknownRecord | undefined; 'space-175'?: UnknownRecord | undefined; 'space-200'?: UnknownRecord | undefined; 'space-225'?: UnknownRecord | undefined; 'space-250'?: UnknownRecord | undefined; 'space-275'?: UnknownRecord | undefined; 'space-300'?: UnknownRecord | undefined; 'space-350'?: UnknownRecord | undefined; 'space-400'?: UnknownRecord | undefined; 'space-450'?: UnknownRecord | undefined; 'space-500'?: UnknownRecord | undefined; 'space-600'?: UnknownRecord | undefined; 'space-800'?: UnknownRecord | undefined; 'space-900'?: UnknownRecord | undefined; 'space-1000'?: UnknownRecord | undefined; 'space-1200'?: UnknownRecord | undefined; 'space-1600'?: UnknownRecord | undefined; 'space-2000'?: UnknownRecord | undefined; 'space-2400'?: UnknownRecord | undefined; 'space-2800'?: UnknownRecord | undefined; 'space-3200'?: UnknownRecord | undefined; 'space-icon-lg'?: UnknownRecord | undefined; 'space-icon-md'?: UnknownRecord | undefined; 'space-icon-sm'?: UnknownRecord | undefined; 'space-icon-v2-lg'?: UnknownRecord | undefined; 'space-icon-v2-md'?: UnknownRecord | undefined; 'space-icon-v2-sm'?: UnknownRecord | undefined; 'space-icon-v2-xl'?: UnknownRecord | undefined; 'space-icon-xl'?: UnknownRecord | undefined; 'space-icon-xs'?: UnknownRecord | undefined; 'space-icon-xxs'?: UnknownRecord | undefined; 'space-padding-button-medium'?: UnknownRecord | undefined; 'space-padding-button-small'?: UnknownRecord | undefined; 'space-padding-header'?: UnknownRecord | undefined; 'text-brand-h1'?: UnknownRecord | undefined; 'text-brand-h2'?: UnknownRecord | undefined; 'text-brand-h3'?: UnknownRecord | undefined; 'text-brand-h4'?: UnknownRecord | undefined; 'text-brand-h5'?: UnknownRecord | undefined; 'text-brand-h6'?: UnknownRecord | undefined; 'text-brand-label'?: UnknownRecord | undefined; 'text-brand-p'?: UnknownRecord | undefined; 'text-brand-p-small'?: UnknownRecord | undefined; 'text-brand-p-subheader'?: UnknownRecord | undefined; 'text-product-code'?: UnknownRecord | undefined; 'text-product-h1'?: UnknownRecord | undefined; 'text-product-h2'?: UnknownRecord | undefined; 'text-product-h3'?: UnknownRecord | undefined; 'text-product-h4'?: UnknownRecord | undefined; 'text-product-label'?: UnknownRecord | undefined; 'text-product-label-secondary'?: UnknownRecord | undefined; 'text-product-link'?: UnknownRecord | undefined; 'text-product-link-secondary'?: UnknownRecord | undefined; 'text-product-p'?: UnknownRecord | undefined; 'text-product-p-active'?: UnknownRecord | undefined; 'text-product-p-secondary'?: UnknownRecord | undefined; 'text-product-ps'?: UnknownRecord | undefined; 'text-product-ps-active'?: UnknownRecord | undefined; 'text-product-pxs'?: UnknownRecord | undefined; 'text-product-pxs-active'?: UnknownRecord | undefined; 'text-product-pxs-secondary'?: UnknownRecord | undefined; } & Record<string, UnknownRecord>; styles: DeepPartial<{ text: readonly ("brand-h1" | "brand-h2" | "brand-h3" | "brand-h4" | "brand-h5" | "brand-h6" | "brand-label" | "brand-p" | "brand-p-small" | "brand-p-subheader" | "product-code" | "product-h1" | "product-h2" | "product-h3" | "product-h4" | "product-label" | "product-label-secondary" | "product-link" | "product-link-secondary" | "product-p" | "product-p-active" | "product-p-secondary" | "product-ps" | "product-ps-active" | "product-pxs" | "product-pxs-active" | "product-pxs-secondary")[]; }> & { text?: UnknownArray | undefined; }; colorScheme: ResolvedColorScheme; className: string; version: string; } | undefined; dark?: { name: string; tokens: { ai: { "fill-mix-amount": number; "ring-stop-mix-amount-01": number; "ring-stop-mix-amount-02": number; "ring-stop-mix-amount-03": number; }; color: { "ai-fill-stop-01": string; "ai-fill-stop-02": string; "ai-fill-surface": string; "ai-ring-fade": string; "ai-ring-gap": string; "ai-ring-stop-01": string; "ai-ring-stop-02": string; "ai-ring-stop-03": string; "background-default": string; "banner-caution-background": string; "banner-caution-border": string; "banner-default-background": string; "banner-default-border": string; "banner-error-background": string; "banner-error-border": string; "banner-feature-background": string; "banner-feature-border": string; "banner-information-background": string; "banner-information-border": string; "banner-success-background": string; "banner-success-border": string; "banner-warning-background": string; "border-accent": string; "border-accent-disabled": string; "border-accent-hover": string; "border-accent-minimal": string; "border-accent-subtle": string; "border-accent-subtle-hover": string; "border-active": string; "border-active-hover": string; "border-base": string; "border-base-hover": string; "border-bold": string; "border-bold-hover": string; "border-caution": string; "border-caution-disabled": string; "border-caution-hover": string; "border-caution-minimal": string; "border-caution-subtle": string; "border-caution-subtle-hover": string; "border-critical": string; "border-critical-disabled": string; "border-critical-hover": string; "border-critical-minimal": string; "border-critical-subtle": string; "border-critical-subtle-hover": string; "border-dropdown": string; "border-feature-border-information": string; "border-feature-border-information-disabled": string; "border-feature-border-information-hover": string; "border-feature-border-information-minimal": string; "border-feature-border-information-subtle": string; "border-feature-border-information-subtle-hover": string; "border-focus": string; "border-information": string; "border-information-disabled": string; "border-information-hover": string; "border-information-minimal": string; "border-information-subtle": string; "border-information-subtle-hover": string; "border-invert": string; "border-minimal": string; "border-minimal-hover": string; "border-success": string; "border-success-disabled": string; "border-success-hover": string; "border-success-minimal": string; "border-success-subtle": string; "border-success-subtle-hover": string; "button-surface-invert": string; "button-surface-invert-hover": string; "chart-base-1": string; "chart-base-2": string; "chart-base-3": string; "chart-base-4": string; "chart-positive-1": string; "chart-positive-2": string; "chart-positive-3": string; "chart-positive-4": string; "chart-secondary-1": string; "chart-secondary-2": string; "chart-secondary-3": string; "chart-secondary-4": string; "date_picker-background": string; "date_picker-background-hover": string; "date_picker-background-selected": string; "icon-accent": string; "icon-accent-disabled": string; "icon-accent-hover": string; "icon-accent-invert-disabled": string; "icon-base": string; "icon-base-disabled": string; "icon-base-hover": string; "icon-bold": string; "icon-button": string; "icon-caution": string; "icon-caution-disabled": string; "icon-critical": string; "icon-critical-disabled": string; "icon-critical-hover": string; "icon-critical-invert-disabled": string; "icon-feature": string; "icon-feature-disabled": string; "icon-information": string; "icon-information-disabled": string; "icon-invert": string; "icon-minimal": string; "icon-navigation": string; "icon-subtle": string; "icon-success": string; "icon-success-disabled": string; "icon-white": string; "label-blue-background": string; "label-blue-icon": string; "label-blue-text": string; "label-clementine-background": string; "label-clementine-icon": string; "label-clementine-text": string; "label-green-background": string; "label-green-icon": string; "label-green-text": string; "label-grey-background": string; "label-grey-icon": string; "label-grey-text": string; "label-plum-background": string; "label-plum-icon": string; "label-plum-text": string; "label-purple-background": string; "label-purple-icon": string; "label-purple-text": string; "label-raspberry-background": string; "label-raspberry-icon": string; "label-raspberry-text": string; "label-red-background": string; "label-red-icon": string; "label-red-text": string; "label-teal-background": string; "label-teal-icon": string; "label-teal-text": string; "label-yellow-background": string; "label-yellow-icon": string; "label-yellow-text": string; "navigation-background": string; "navigation-background-hover": string; "navigation-background-selected": string; "navigation-icon": string; "navigation-icon-collapsed": string; "navigation-icon-selected": string; "navigation-text": string; "navigation-text-selected": string; "snackbar-default-background": string; "snackbar-default-close-background-hover": string; "snackbar-error-background": string; "snackbar-error-close-background-hover": string; "snackbar-success-background": string; "snackbar-success-close-background-hover": string; "status-blue": string; "status-green": string; "status-purple": string; "status-red": string; "status-yellow": string; "surface-accent": string; "surface-accent-disabled": string; "surface-accent-hover": string; "surface-accent-minimal": string; "surface-accent-subtle": string; "surface-active": string; "surface-active-disabled": string; "surface-active-hover": string; "surface-base": string; "surface-base-disabled": string; "surface-base-hover": string; "surface-bold": string; "surface-bold-hover": string; "surface-caution": string; "surface-caution-bold": string; "surface-caution-disabled": string; "surface-caution-hover": string; "surface-caution-minimal": string; "surface-caution-subtle": string; "surface-caution-subtle-hover": string; "surface-critical": string; "surface-critical-bold": string; "surface-critical-disabled": string; "surface-critical-hover": string; "surface-critical-minimal": string; "surface-critical-subtle": string; "surface-critical-subtle-hover": string; "surface-information": string; "surface-information-bold": string; "surface-information-disabled": string; "surface-information-hover": string; "surface-information-minimal": string; "surface-information-subtle": string; "surface-information-subtle-hover": string; "surface-invert": string; "surface-invert-bold": string; "surface-invert-bold-hover": string; "surface-invert-hover": string; "surface-invert-subtle": string; "surface-subtle": string; "surface-subtle-disabled": string; "surface-subtle-hover": string; "surface-success": string; "surface-success-bold": string; "surface-success-disabled": string; "surface-success-hover": string; "surface-success-minimal": string; "surface-success-subtle": string; "surface-success-subtle-hover": string; "surface-workflow-data": string; "surface-workflow-delays": string; "surface-workflow-flowcontrol": string; "surface-workflow-messages": string; "text-accent": string; "text-accent-bold": string; "text-accent-disabled": string; "text-accent-hover": string; "text-accent-invert-disabled": string; "text-active": string; "text-base": string; "text-base-disabled": string; "text-base-hover": string; "text-bold": string; "text-bold-hover": string; "text-caution": string; "text-caution-bold": string; "text-caution-disabled": string; "text-caution-hover": string; "text-caution-subtle": string; "text-code": string; "text-critical": string; "text-critical-bold": string; "text-critical-disabled": string; "text-critical-hover": string; "text-critical-invert-disabled": string; "text-critical-subtle": string; "text-information": string; "text-information-bold": string; "text-information-disabled": string; "text-information-hover": string; "text-information-subtle": string; "text-invert": string; "text-minimal": string; "text-placeholder": string; "text-subtle": string; "text-success": string; "text-success-bold": string; "text-success-disabled": string; "text-success-hover": string; "text-success-subtle": string; "text-white": string; "toggle-surface-active": string; "toggle-surface-active-disabled": string; "toggle-surface-active-hover": string; "toggle-surface-base": string; "toggle-surface-base-disabled": string; "toggle-surface-base-hover": string; }; palette: { "blue_wave-025": string; "blue_wave-050": string; "blue_wave-100": string; "blue_wave-200": string; "blue_wave-300": string; "blue_wave-400": string; "blue_wave-500": string; "blue_wave-600": string; "blue_wave-700": string; "blue_wave-800": string; "blue_wave-900": string; "blue-050": string; "blue-100": string; "blue-200": string; "blue-300": string; "blue-400": string; "blue-500": string; "blue-600": string; "blue-700": string; "blue-800": string; "blue-900": string; "brand-forest": string; "brand-forest-dark": string; "brand-forest-light": string; "green_verdant-015": string; "green_verdant-025": string; "green_verdant-050": string; "green_verdant-100": string; "green_verdant-200": string; "green_verdant-300": string; "green_verdant-400": string; "green_verdant-500": string; "green_verdant-550": string; "green_verdant-600": string; "green_verdant-700": string; "green_verdant-800": string; "green_verdant-850": string; "green_verdant-900": string; "green-050": string; "green-100": string; "green-200": string; "green-300": string; "green-400": string; "green-500": string; "green-600": string; "green-700": string; "green-800": string; "green-900": string; "grey_charcoal-015": string; "grey_charcoal-025": string; "grey_charcoal-050": string; "grey_charcoal-100": string; "grey_charcoal-200": string; "grey_charcoal-250": string; "grey_charcoal-300": string; "grey_charcoal-350": string; "grey_charcoal-400": string; "grey_charcoal-500": string; "grey_charcoal-600": string; "grey_charcoal-650": string; "grey_charcoal-700": string; "grey_charcoal-750": string; "grey_charcoal-800": string; "grey_charcoal-850": string; "grey_charcoal-900": string; "grey_charcoal-black": string; "grey_charcoal-white": string; "grey_warm_charcoal-015": string; "grey_warm_charcoal-025": string; "grey_warm_charcoal-050": string; "grey_warm_charcoal-100": string; "grey_warm_charcoal-200": string; "grey_warm_charcoal-300": string; "grey_warm_charcoal-400": string; "grey_warm_charcoal-500": string; "grey_warm_charcoal-600": string; "grey_warm_charcoal-700": string; "grey_warm_charcoal-800": string; "grey_warm_charcoal-900": string; "grey_warm_charcoal-black": string; "grey_warm_charcoal-white": string; "grey-050": string; "grey-100": string; "grey-200": string; "grey-300": string; "grey-400": string; "grey-500": string; "grey-600": string; "grey-700": string; "grey-800": string; "grey-900": string; "grey-black": string; "grey-white": string; "orange_zest-025": string; "orange_zest-050": string; "orange_zest-100": string; "orange_zest-200": string; "orange_zest-300": string; "orange_zest-400": string; "orange_zest-500": string; "orange_zest-600": string; "orange_zest-700": string; "orange_zest-800": string; "orange_zest-900": string; "orange-050": string; "orange-100": string; "orange-200": string; "orange-300": string; "orange-400": string; "orange-500": string; "orange-600": string; "orange-700": string; "orange-800": string; "orange-900": string; "pink_blush-025": string; "pink_blush-050": string; "pink_blush-100": string; "pink_blush-200": string; "pink_blush-300": string; "pink_blush-400": string; "pink_blush-500": string; "pink_blush-600": string; "pink_blush-700": string; "pink_blush-800": string; "pink_blush-900": string; "plum-100": string; "plum-200": string; "plum-300": string; "plum-400": string; "plum-500": string; "plum-600": string; "plum-700": string; "plum-800": string; "plum-900": string; "plum-950": string; "purple_nova-025": string; "purple_nova-050": string; "purple_nova-100": string; "purple_nova-150": string; "purple_nova-200": string; "purple_nova-300": string; "purple_nova-400": string; "purple_nova-500": string; "purple_nova-600": string; "purple_nova-700": string; "purple_nova-750": string; "purple_nova-800": string; "purple_nova-900": string; "purple-050": string; "purple-100": string; "purple-200": string; "purple-300": string; "purple-400": string; "purple-500": string; "purple-600": string; "purple-700": string; "purple-800": string; "purple-900": string; "raspberry-050": string; "raspberry-100": string; "raspberry-200": string; "raspberry-300": string; "raspberry-400": string; "raspberry-500": string; "raspberry-600": string; "raspberry-700": string; "raspberry-800": string; "raspberry-900": string; "red_flame-025": string; "red_flame-050": string; "red_flame-100": string; "red_flame-200": string; "red_flame-300": string; "red_flame-400": string; "red_flame-500": string; "red_flame-600": string; "red_flame-700": string; "red_flame-800": string; "red_flame-900": string; "red-050": string; "red-100": string; "red-200": string; "red-300": string; "red-400": string; "red-500": string; "red-600": string; "red-700": string; "red-800": string; "red-900": string; "teal_spruce-015": string; "teal_spruce-025": string; "teal_spruce-050": string; "teal_spruce-100": string; "teal_spruce-200": string; "teal_spruce-300": string; "teal_spruce-400": string; "teal_spruce-500": string; "teal_spruce-600": string; "teal_spruce-700": string; "teal_spruce-800": string; "teal_spruce-900": string; "teal-050": string; "teal-100": string; "teal-200": string; "teal-300": string; "teal-400": string; "teal-500": string; "teal-600": string; "teal-700": string; "teal-800": string; "teal-900": string; "yellow_mustard-025": string; "yellow_mustard-050": string; "yellow_mustard-100": string; "yellow_mustard-200": string; "yellow_mustard-300": string; "yellow_mustard-400": string; "yellow_mustard-500": string; "yellow_mustard-600": string; "yellow_mustard-700": string; "yellow_mustard-800": string; "yellow_mustard-900": string; "yellow-050": string; "yellow-100": string; "yellow-200": string; "yellow-300": string; "yellow-400": string; "yellow-500": string; "yellow-600": string; "yellow-700": string; "yellow-800": string; "yellow-900": string; }; radius: { 2: string; 3: string; 4: string; 6: string; 8: string; 10: string; "button-medium": string; "button-small": string; dropdown: string; full: string; labels: string; }; "font-size": { button: string; l: string; m: string; s: string; xl: string; xs: string; xxl: string; xxs: string; xxxl: string; }; "font-family": Record<"mono" | "sans", string>; "font-weight": { bold: number; heavy: number; light: number; medium: number; regular: number; semibold: number; }; border: { 0: string; "width-025": string; "width-050": string; "width-0125": string; }; space: { 0: string; "025": string; "050": string; "075": string; 100: string; 125: string; 150: string; 175: string; 200: string; 225: string; 250: string; 275: string; 300: string; 350: string; 400: string; 450: string; 500: string; 600: string; 800: string; 900: string; 1000: string; 1200: string; 1600: string; 2000: string; 2400: string; 2800: string; 3200: string; "icon-lg": string; "icon-md": string; "icon-sm": string; "icon-v2-lg": string; "icon-v2-md": string; "icon-v2-sm": string; "icon-v2-xl": string; "icon-xl": string; "icon-xs": string; "icon-xxs": string; "padding-button-medium": string; "padding-button-small": string; "padding-header": string; }; text: Record<"brand-h1-font-family" | "brand-h1-font-size" | "brand-h1-font-style" | "brand-h1-font-weight" | "brand-h1-letter-spacing" | "brand-h1-line-height" | "brand-h1-text-transform" | "brand-h1-text-decoration" | "brand-h2-font-family" | "brand-h2-font-size" | "brand-h2-font-style" | "brand-h2-font-weight" | "brand-h2-letter-spacing" | "brand-h2-line-height" | "brand-h2-text-transform" | "brand-h2-text-decoration" | "brand-h3-font-family" | "brand-h3-font-size" | "brand-h3-font-style" | "brand-h3-font-weight" | "brand-h3-letter-spacing" | "brand-h3-line-height" | "brand-h3-text-transform" | "brand-h3-text-decoration" | "brand-h4-font-family" | "brand-h4-font-size" | "brand-h4-font-style" | "brand-h4-font-weight" | "brand-h4-letter-spacing" | "brand-h4-line-height" | "brand-h4-text-transform" | "brand-h4-text-decoration" | "brand-h5-font-family" | "brand-h5-font-size" | "brand-h5-font-style" | "brand-h5-font-weight" | "brand-h5-letter-spacing" | "brand-h5-line-height" | "brand-h5-text-transform" | "brand-h5-text-decoration" | "brand-h6-font-family" | "brand-h6-font-size" | "brand-h6-font-style" | "brand-h6-font-weight" | "brand-h6-letter-spacing" | "brand-h6-line-height" | "brand-h6-text-transform" | "brand-h6-text-decoration" | "brand-label-font-family" | "brand-label-font-size" | "brand-label-font-style" | "brand-label-font-weight" | "brand-label-letter-spacing" | "brand-label-line-height" | "brand-label-text-transform" | "brand-label-text-decoration" | "brand-p-font-family" | "brand-p-font-size" | "brand-p-font-style" | "brand-p-font-weight" | "brand-p-letter-spacing" | "brand-p-line-height" | "brand-p-text-transform" | "brand-p-text-decoration" | "brand-p-small-font-family" | "brand-p-small-font-size" | "brand-p-small-font-style" | "brand-p-small-font-weight" | "brand-p-small-letter-spacing" | "brand-p-small-line-height" | "brand-p-small-text-transform" | "brand-p-small-text-decoration" | "brand-p-subheader-font-family" | "brand-p-subheader-font-size" | "brand-p-subheader-font-style" | "brand-p-subheader-font-weight" | "brand-p-subheader-letter-spacing" | "brand-p-subheader-line-height" | "brand-p-subheader-text-transform" | "brand-p-subheader-text-decoration" | "product-code-font-family" | "product-code-font-size" | "product-code-font-style" | "product-code-font-weight" | "product-code-letter-spacing" | "product-code-line-height" | "product-code-text-transform" | "product-code-text-decoration" | "product-h1-font-family" | "product-h1-font-size" | "product-h1-font-style" | "product-h1-font-weight" | "product-h1-letter-spacing" | "product-h1-line-height" | "product-h1-text-transform" | "product-h1-text-decoration" | "product-h2-font-family" | "product-h2-font-size" | "product-h2-font-style" | "product-h2-font-weight" | "product-h2-letter-spacing" | "product-h2-line-height" | "product-h2-text-transform" | "product-h2-text-decoration" | "product-h3-font-family" | "product-h3-font-size" | "product-h3-font-style" | "product-h3-font-weight" | "product-h3-letter-spacing" | "product-h3-line-height" | "product-h3-text-transform" | "product-h3-text-decoration" | "product-h4-font-family" | "product-h4-font-size" | "product-h4-font-style" | "product-h4-font-weight" | "product-h4-letter-spacing" | "product-h4-line-height" | "product-h4-text-transform" | "product-h4-text-decoration" | "product-label-font-family" | "product-label-font-size" | "product-label-font-style" | "product-label-font-weight" | "product-label-letter-spacing" | "product-label-line-height" | "product-label-text-transform" | "product-label-text-decoration" | "product-label-secondary-font-family" | "product-label-secondary-font-size" | "product-label-secondary-font-style" | "product-label-secondary-font-weight" | "product-label-secondary-letter-spacing" | "product-label-secondary-line-height" | "product-label-secondary-text-transform" | "product-label-secondary-text-decoration" | "product-link-font-family" | "product-link-font-size" | "product-link-font-style" | "product-link-font-weight" | "product-link-letter-spacing" | "product-link-line-height" | "product-link-text-transform" | "product-link-text-decoration" | "product-link-secondary-font-family" | "product-link-secondary-font-size" | "product-link-secondary-font-style" | "product-link-secondary-font-weight" | "product-link-secondary-letter-spacing" | "product-link-secondary-line-height" | "product-link-secondary-text-transform" | "product-link-secondary-text-decoration" | "product-p-font-family" | "product-p-font-size" | "product-p-font-style" | "product-p-font-weight" | "product-p-letter-spacing" | "product-p-line-height" | "product-p-text-transform" | "product-p-text-decoration" | "product-p-active-font-family" | "product-p-active-font-size" | "product-p-active-font-style" | "product-p-active-font-weight" | "product-p-active-letter-spacing" | "product-p-active-line-height" | "product-p-active-text-transform" | "product-p-active-text-decoration" | "product-p-secondary-font-family" | "product-p-secondary-font-size" | "product-p-secondary-font-style" | "product-p-secondary-font-weight" | "product-p-secondary-letter-spacing" | "product-p-secondary-line-height" | "product-p-secondary-text-transform" | "product-p-secondary-text-decoration" | "product-ps-font-family" | "product-ps-font-size" | "product-ps-font-style" | "product-ps-font-weight" | "product-ps-letter-spacing" | "product-ps-line-height" | "product-ps-text-transform" | "product-ps-text-decoration" | "product-ps-active-font-family" | "product-ps-active-font-size" | "product-ps-active-font-style" | "product-ps-active-font-weight" | "product-ps-active-letter-spacing" | "product-ps-active-line-height" | "product-ps-active-text-transform" | "product-ps-active-text-decoration" | "product-pxs-font-family" | "product-pxs-font-size" | "product-pxs-font-style" | "product-pxs-font-weight" | "product-pxs-letter-spacing" | "product-pxs-line-height" | "product-pxs-text-transform" | "product-pxs-text-decoration" | "product-pxs-active-font-family" | "product-pxs-active-font-size" | "product-pxs-active-font-style" | "product-pxs-active-font-weight" | "product-pxs-active-letter-spacing" | "product-pxs-active-line-height" | "product-pxs-active-text-transform" | "product-pxs-active-text-decoration" | "product-pxs-secondary-font-family" | "product-pxs-secondary-font-size" | "product-pxs-secondary-font-style" | "product-pxs-secondary-font-weight" | "product-pxs-secondary-letter-spacing" | "product-pxs-secondary-line-height" | "product-pxs-secondary-text-transform" | "product-pxs-secondary-text-decoration", string>; depth: Record<"inset" | "onset" | "surface-1" | "surface-2" | "surface-3", string>; "depth-filter": Record<"surface-1" | "surface-2" | "surface-3", string>; focus: Record<"default", string>; motion: Record<"duration-fast-01" | "duration-fast-02" | "duration-moderate-01" | "duration-moderate-02" | "duration-slow-01" | "duration-slow-02" | "easing-entrance-expressive" | "easing-entrance-productive" | "easing-exit-expressive" | "easing-exit-productive" | "easing-standard-expressive" | "easing-standard-productive", string>; }; tokensMeta: { 'ai-fill-mix-amount': { id: string; $type: "number"; $value: number; }; 'ai-ring-stop-mix-amount-01': { id: string; $type: "number"; $value: number; }; 'ai-ring-stop-mix-amount-02': { id: string; $type: "number"; $value: number; }; 'ai-ring-stop-mix-amount-03': { id: string; $type: "number"; $value: number; }; 'border-0': { id: string; $type: "dimension"; $value: string; }; 'border-width-025': { id: string; $type: "dimension"; $value: string; }; 'border-width-050': { id: string; $type: "dimension"; $value: string; }; 'border-width-0125': { id: string; $type: "dimension"; $value: string; }; 'color-ai-fill-stop-01': { id: string; $type: "color"; $value: string; }; 'color-ai-fill-stop-02': { id: string; $type: "color"; $value: string; }; 'color-ai-fill-surface': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-fade': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-gap': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-stop-01': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-stop-02': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-stop-03': { id: string; $type: "color"; $value: string; }; 'color-background-default': { id: string; $type: "color"; $value: string; }; 'color-banner-caution-background': { id: string; $type: "color"; $value: string; }; 'color-banner-caution-border': { id: string; $type: "color"; $value: string; }; 'color-banner-default-background': { id: string; $type: "color"; $value: string; }; 'color-banner-default-border': { id: string; $type: "color"; $value: string; }; 'color-banner-error-background': { id: string; $type: "color"; $value: string; }; 'color-banner-error-border': { id: string; $type: "color"; $value: string; }; 'color-banner-feature-background': { id: string; $type: "color"; $value: string; }; 'color-banner-feature-border': { id: string; $type: "color"; $value: string; }; 'color-banner-information-background': { id: string; $type: "color"; $value: string; }; 'color-banner-information-border': { id: string; $type: "color"; $value: string; }; 'color-banner-success-background': { id: string; $type: "color"; $value: string; }; 'color-banner-success-border': { id: string; $type: "color"; $value: string; }; 'color-banner-warning-background': { id: string; $type: "color"; $value: string; }; 'color-border-accent': { id: string; $type: "color"; $value: string; }; 'color-border-accent-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-accent-hover': { id: string; $type: "color"; $value: string; }; 'color-border-accent-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-accent-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-accent-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-active': { id: string; $type: "color"; $value: string; }; 'color-border-active-hover': { id: string; $type: "color"; $value: string; }; 'color-border-base': { id: string; $type: "color"; $value: string; }; 'color-border-base-hover': { id: string; $type: "color"; $value: string; }; 'color-border-bold': { id: string; $type: "color"; $value: string; }; 'color-border-bold-hover': { id: string; $type: "color"; $value: string; }; 'color-border-caution': { id: string; $type: "color"; $value: string; }; 'color-border-caution-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-caution-hover': { id: string; $type: "color"; $value: string; }; 'color-border-caution-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-caution-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-caution-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-critical': { id: string; $type: "color"; $value: string; }; 'color-border-critical-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-critical-hover': { id: string; $type: "color"; $value: string; }; 'color-border-critical-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-critical-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-critical-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-dropdown': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-hover': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-focus': { id: string; $type: "color"; $value: string; }; 'color-border-information': { id: string; $type: "color"; $value: string; }; 'color-border-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-information-hover': { id: string; $type: "color"; $value: string; }; 'color-border-information-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-information-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-information-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-invert': { id: string; $type: "color"; $value: string; }; 'color-border-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-minimal-hover': { id: string; $type: "color"; $value: string; }; 'color-border-success': { id: string; $type: "color"; $value: string; }; 'color-border-success-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-success-hover': { id: string; $type: "color"; $value: string; }; 'color-border-success-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-success-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-success-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-button-surface-invert': { id: string; $type: "color"; $value: string; }; 'color-button-surface-invert-hover': { id: string; $type: "color"; $value: string; }; 'color-chart-base-1': { id: string; $type: "color"; $value: string; }; 'color-chart-base-2': { id: string; $type: "color"; $value: string; }; 'color-chart-base-3': { id: string; $type: "color"; $value: string; }; 'color-chart-base-4': { id: string; $type: "color"; $value: string; }; 'color-chart-positive-1': { id: string; $type: "color"; $value: string; }; 'color-chart-positive-2': { id: string; $type: "color"; $value: string; }; 'color-chart-positive-3': { id: string; $type: "color"; $value: string; }; 'color-chart-positive-4': { id: string; $type: "color"; $value: string; }; 'color-chart-secondary-1': { id: string; $type: "color"; $value: string; }; 'color-chart-secondary-2': { id: string; $type: "color"; $value: string; }; 'color-chart-secondary-3': { id: string; $type: "color"; $value: string; }; 'color-chart-secondary-4': { id: string; $type: "color"; $value: string; }; 'color-date_picker-background': { id: string; $type: "color"; $value: string; }; 'color-date_picker-background-hover': { id: string; $type: "color"; $value: string; }; 'color-date_picker-background-selected': { id: string; $type: "color"; $value: string; }; 'color-icon-accent': { id: string; $type: "color"; $value: string; }; 'color-icon-accent-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-accent-hover': { id: string; $type: "color"; $value: string; }; 'color-icon-accent-invert-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-base': { id: string; $type: "color"; $value: string; }; 'color-icon-base-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-base-hover': { id: string; $type: "color"; $value: string; }; 'color-icon-bold': { id: string; $type: "color"; $value: string; }; 'color-icon-button': { id: string; $type: "color"; $value: string; }; 'color-icon-caution': { id: string; $type: "color"; $value: string; }; 'color-icon-caution-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-critical': { id: string; $type: "color"; $value: string; }; 'color-icon-critical-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-critical-hover': { id: string; $type: "color"; $value: string; }; 'color-icon-critical-invert-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-feature': { id: string; $type: "color"; $value: string; }; 'color-icon-feature-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-information': { id: string; $type: "color"; $value: string; }; 'color-icon-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-invert': { id: string; $type: "color"; $value: string; }; 'color-icon-minimal': { id: string; $type: "color"; $value: string; }; 'color-icon-navigation': { id: string; $type: "color"; $value: string; }; 'color-icon-subtle': { id: string; $type: "color"; $value: string; }; 'color-icon-success': { id: string; $type: "color"; $value: string; }; 'color-icon-success-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-white': { id: string; $type: "color"; $value: string; }; 'color-label-blue-background': { id: string; $type: "color"; $value: string; }; 'color-label-blue-icon': { id: string; $type: "color"; $value: string; }; 'color-label-blue-text': { id: string; $type: "color"; $value: string; }; 'color-label-clementine-background': { id: string; $type: "color"; $value: string; }; 'color-label-clementine-icon': { id: string; $type: "color"; $value: string; }; 'color-label-clementine-text': { id: string; $type: "color"; $value: string; }; 'color-label-green-background': { id: string; $type: "color"; $value: string; }; 'color-label-green-icon': { id: string; $type: "color"; $value: string; }; 'color-label-green-text': { id: string; $type: "color"; $value: string; }; 'color-label-grey-background': { id: string; $type: "color"; $value: string; }; 'color-label-grey-icon': { id: string; $type: "color"; $value: string; }; 'color-label-grey-text': { id: string; $type: "color"; $value: string; }; 'color-label-plum-background': { id: string; $type: "color"; $value: string; }; 'color-label-plum-icon': { id: string; $type: "color"; $value: string; }; 'color-label-plum-text': { id: string; $type: "color"; $value: string; }; 'color-label-purple-background': { id: string; $type: "color"; $value: string; }; 'color-label-purple-icon': { id: string; $type: "color"; $value: string; }; 'color-label-purple-text': { id: string; $type: "color"; $value: string; }; 'color-label-raspberry-background': { id: string; $type: "color"; $value: string; }; 'color-label-raspberry-icon': { id: string; $type: "color"; $value: string; }; 'color-label-raspberry-text': { id: string; $type: "color"; $value: string; }; 'color-label-red-background': { id: string; $type: "color"; $value: string; }; 'color-label-red-icon': { id: string; $type: "color"; $value: string; }; 'color-label-red-text': { id: string; $type: "color"; $value: string; }; 'color-label-teal-background': { id: string; $type: "color"; $value: string; }; 'color-label-teal-icon': { id: string; $type: "color"; $value: string; }; 'color-label-teal-text': { id: string; $type: "color"; $value: string; }; 'color-label-yellow-background': { id: string; $type: "color"; $value: string; }; 'color-label-yellow-icon': { id: string; $type: "color"; $value: string; }; 'color-label-yellow-text': { id: string; $type: "color"; $value: string; }; 'color-navigation-background': { id: string; $type: "color"; $value: string; }; 'color-navigation-background-hover': { id: string; $type: "color"; $value: string; }; 'color-navigation-background-selected': { id: string; $type: "color"; $value: string; }; 'color-navigation-icon': { id: string; $type: "color"; $value: string; }; 'color-navigation-icon-collapsed': { id: string; $type: "color"; $value: string; }; 'color-navigation-icon-selected': { id: string; $type: "color"; $value: string; }; 'color-navigation-text': { id: string; $type: "color"; $value: string; }; 'color-navigation-text-selected': { id: string; $type: "color"; $value: string; }; 'color-snackbar-default-background': { id: string; $type: "color"; $value: string; }; 'color-snackbar-default-close-background-hover': { id: string; $type: "color"; $value: string; }; 'color-snackbar-error-background': { id: string; $type: "color"; $value: string; }; 'color-snackbar-error-close-background-hover': { id: string; $type: "color"; $value: string; }; 'color-snackbar-success-background': { id: string; $type: "color"; $value: string; }; 'color-snackbar-success-close-background-hover': { id: string; $type: "color"; $value: string; }; 'color-status-blue': { id: string; $type: "color"; $value: string; }; 'color-status-green': { id: string; $type: "color"; $value: string; }; 'color-status-purple': { id: string; $type: "color"; $value: string; }; 'color-status-red': { id: string; $type: "color"; $value: string; }; 'color-status-yellow': { id: string; $type: "color"; $value: string; }; 'color-surface-accent': { id: string; $type: "color"; $value: string; }; 'color-surface-accent-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-accent-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-accent-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-accent-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-active': { id: string; $type: "color"; $value: string; }; 'color-surface-active-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-active-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-base': { id: string; $type: "color"; $value: string; }; 'color-surface-base-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-base-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-bold-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-caution': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-critical': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-information': { id: string; $type: "color"; $value: string; }; 'color-surface-information-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-information-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-information-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-information-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-information-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-invert': { id: string; $type: "color"; $value: string; }; 'color-surface-invert-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-invert-bold-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-invert-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-invert-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-subtle-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-success': { id: string; $type: "color"; $value: string; }; 'color-surface-success-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-success-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-success-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-success-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-success-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-success-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-workflow-data': { id: string; $type: "color"; $value: string; }; 'color-surface-workflow-delays': { id: string; $type: "color"; $value: string; }; 'color-surface-workflow-flowcontrol': { id: string; $type: "color"; $value: string; }; 'color-surface-workflow-messages': { id: string; $type: "color"; $value: string; }; 'color-text-accent': { id: string; $type: "color"; $value: string; }; 'color-text-accent-bold': { id: string; $type: "color"; $value: string; }; 'color-text-accent-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-accent-hover': { id: string; $type: "color"; $value: string; }; 'color-text-accent-invert-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-active': { id: string; $type: "color"; $value: string; }; 'color-text-base': { id: string; $type: "color"; $value: string; }; 'color-text-base-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-base-hover': { id: string; $type: "color"; $value: string; }; 'color-text-bold': { id: string; $type: "color"; $value: string; }; 'color-text-bold-hover': { id: string; $type: "color"; $value: string; }; 'color-text-caution': { id: string; $type: "color"; $value: string; }; 'color-text-caution-bold': { id: string; $type: "color"; $value: string; }; 'color-text-caution-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-caution-hover': { id: string; $type: "color"; $value: string; }; 'color-text-caution-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-code': { id: string; $type: "color"; $value: string; }; 'color-text-critical': { id: string; $type: "color"; $value: string; }; 'color-text-critical-bold': { id: string; $type: "color"; $value: string; }; 'color-text-critical-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-critical-hover': { id: string; $type: "color"; $value: string; }; 'color-text-critical-invert-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-critical-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-information': { id: string; $type: "color"; $value: string; }; 'color-text-information-bold': { id: string; $type: "color"; $value: string; }; 'color-text-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-information-hover': { id: string; $type: "color"; $value: string; }; 'color-text-information-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-invert': { id: string; $type: "color"; $value: string; }; 'color-text-minimal': { id: string; $type: "color"; $value: string; }; 'color-text-placeholder': { id: string; $type: "color"; $value: string; }; 'color-text-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-success': { id: string; $type: "color"; $value: string; }; 'color-text-success-bold': { id: string; $type: "color"; $value: string; }; 'color-text-success-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-success-hover': { id: string; $type: "color"; $value: string; }; 'color-text-success-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-white': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-active': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-active-disabled': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-active-hover': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-base': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-base-disabled': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-base-hover': { id: string; $type: "color"; $value: string; }; 'depth-inset': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'depth-onset': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'depth-surface-1': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'depth-surface-2': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'depth-surface-3': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; focus: { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'font-family-mono': { id: string; $type: "fontFamily"; $value: string[]; }; 'font-family-sans': { id: string; $type: "fontFamily"; $value: string[]; }; 'font-size-button': { id: string; $type: "dimension"; $value: string; }; 'font-size-l': { id: string; $type: "dimension"; $value: string; }; 'font-size-m': { id: string; $type: "dimension"; $value: string; }; 'font-size-s': { id: string; $type: "dimension"; $value: string; }; 'font-size-xl': { id: string; $type: "dimension"; $value: string; }; 'font-size-xs': { id: string; $type: "dimension"; $value: string; }; 'font-size-xxl': { id: string; $type: "dimension"; $value: string; }; 'font-size-xxs': { id: string; $type: "dimension"; $value: string; }; 'font-size-xxxl': { id: string; $type: "dimension"; $value: string; }; 'font-weight-bold': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-heavy': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-light': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-medium': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-regular': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-semibold': { id: string; $type: "fontWeight"; $value: number; }; 'motion-duration-fast-01': { id: string; $type: "duration"; $value: string; }; 'motion-duration-fast-02': { id: string; $type: "duration"; $value: string; }; 'motion-duration-moderate-01': { id: string; $type: "duration"; $value: string; }; 'motion-duration-moderate-02': { id: string; $type: "duration"; $value: string; }; 'motion-duration-slow-01': { id: string; $type: "duration"; $value: string; }; 'motion-duration-slow-02': { id: string; $type: "duration"; $value: string; }; 'motion-easing-entrance-expressive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-entrance-productive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-exit-expressive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-exit-productive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-standard-expressive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-standard-productive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'palette-blue_wave-025': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-050': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-100': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-200': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-300': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-400': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-500': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-600': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-700': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-800': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-900': { id: string; $type: "color"; $value: string; }; 'palette-blue-050': { id: string; $type: "color"; $value: string; }; 'palette-blue-100': { id: string; $type: "color"; $value: string; }; 'palette-blue-200': { id: string; $type: "color"; $value: string; }; 'palette-blue-300': { id: string; $type: "color"; $value: string; }; 'palette-blue-400': { id: string; $type: "color"; $value: string; }; 'palette-blue-500': { id: string; $type: "color"; $value: string; }; 'palette-blue-600': { id: string; $type: "color"; $value: string; }; 'palette-blue-700': { id: string; $type: "color"; $value: string; }; 'palette-blue-800': { id: string; $type: "color"; $value: string; }; 'palette-blue-900': { id: string; $type: "color"; $value: string; }; 'palette-brand-forest': { id: string; $type: "color"; $value: string; }; 'palette-brand-forest-dark': { id: string; $type: "color"; $value: string; }; 'palette-brand-forest-light': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-015': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-025': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-050': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-100': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-200': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-300': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-400': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-500': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-550': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-600': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-700': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-800': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-850': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-900': { id: string; $type: "color"; $value: string; }; 'palette-green-050': { id: string; $type: "color"; $value: string; }; 'palette-green-100': { id: string; $type: "color"; $value: string; }; 'palette-green-200': { id: string; $type: "color"; $value: string; }; 'palette-green-300': { id: string; $type: "color"; $value: string; }; 'palette-green-400': { id: string; $type: "color"; $value: string; }; 'palette-green-500': { id: string; $type: "color"; $value: string; }; 'palette-green-600': { id: string; $type: "color"; $value: string; }; 'palette-green-700': { id: string; $type: "color"; $value: string; }; 'palette-green-800': { id: string; $type: "color"; $value: string; }; 'palette-green-900': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-015': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-025': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-050': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-100': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-200': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-250': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-300': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-350': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-400': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-500': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-600': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-650': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-700': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-750': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-800': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-850': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-900': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-black': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-white': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-015': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-025': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-050': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-100': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-200': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-300': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-400': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-500': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-600': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-700': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-800': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-900': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-black': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-white': { id: string; $type: "color"; $value: string; }; 'palette-grey-050': { id: string; $type: "color"; $value: string; }; 'palette-grey-100': { id: string; $type: "color"; $value: string; }; 'palette-grey-200': { id: string; $type: "color"; $value: string; }; 'palette-grey-300': { id: string; $type: "color"; $value: string; }; 'palette-grey-400': { id: string; $type: "color"; $value: string; }; 'palette-grey-500': { id: string; $type: "color"; $value: string; }; 'palette-grey-600': { id: string; $type: "color"; $value: string; }; 'palette-grey-700': { id: string; $type: "color"; $value: string; }; 'palette-grey-800': { id: string; $type: "color"; $value: string; }; 'palette-grey-900': { id: string; $type: "color"; $value: string; }; 'palette-grey-black': { id: string; $type: "color"; $value: string; }; 'palette-grey-white': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-025': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-050': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-100': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-200': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-300': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-400': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-500': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-600': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-700': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-800': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-900': { id: string; $type: "color"; $value: string; }; 'palette-orange-050': { id: string; $type: "color"; $value: string; }; 'palette-orange-100': { id: string; $type: "color"; $value: string; }; 'palette-orange-200': { id: string; $type: "color"; $value: string; }; 'palette-orange-300': { id: string; $type: "color"; $value: string; }; 'palette-orange-400': { id: string; $type: "color"; $value: string; }; 'palette-orange-500': { id: string; $type: "color"; $value: string; }; 'palette-orange-600': { id: string; $type: "color"; $value: string; }; 'palette-orange-700': { id: string; $type: "color"; $value: string; }; 'palette-orange-800': { id: string; $type: "color"; $value: string; }; 'palette-orange-900': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-025': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-050': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-100': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-200': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-300': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-400': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-500': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-600': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-700': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-800': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-900': { id: string; $type: "color"; $value: string; }; 'palette-plum-100': { id: string; $type: "color"; $value: string; }; 'palette-plum-200': { id: string; $type: "color"; $value: string; }; 'palette-plum-300': { id: string; $type: "color"; $value: string; }; 'palette-plum-400': { id: string; $type: "color"; $value: string; }; 'palette-plum-500': { id: string; $type: "color"; $value: string; }; 'palette-plum-600': { id: string; $type: "color"; $value: string; }; 'palette-plum-700': { id: string; $type: "color"; $value: string; }; 'palette-plum-800': { id: string; $type: "color"; $value: string; }; 'palette-plum-900': { id: string; $type: "color"; $value: string; }; 'palette-plum-950': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-025': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-050': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-100': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-150': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-200': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-300': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-400': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-500': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-600': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-700': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-750': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-800': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-900': { id: string; $type: "color"; $value: string; }; 'palette-purple-050': { id: string; $type: "color"; $value: string; }; 'palette-purple-100': { id: string; $type: "color"; $value: string; }; 'palette-purple-200': { id: string; $type: "color"; $value: string; }; 'palette-purple-300': { id: string; $type: "color"; $value: string; }; 'palette-purple-400': { id: string; $type: "color"; $value: string; }; 'palette-purple-500': { id: string; $type: "color"; $value: string; }; 'palette-purple-600': { id: string; $type: "color"; $value: string; }; 'palette-purple-700': { id: string; $type: "color"; $value: string; }; 'palette-purple-800': { id: string; $type: "color"; $value: string; }; 'palette-purple-900': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-050': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-100': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-200': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-300': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-400': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-500': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-600': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-700': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-800': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-900': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-025': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-050': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-100': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-200': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-300': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-400': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-500': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-600': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-700': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-800': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-900': { id: string; $type: "color"; $value: string; }; 'palette-red-050': { id: string; $type: "color"; $value: string; }; 'palette-red-100': { id: string; $type: "color"; $value: string; }; 'palette-red-200': { id: string; $type: "color"; $value: string; }; 'palette-red-300': { id: string; $type: "color"; $value: string; }; 'palette-red-400': { id: string; $type: "color"; $value: string; }; 'palette-red-500': { id: string; $type: "color"; $value: string; }; 'palette-red-600': { id: string; $type: "color"; $value: string; }; 'palette-red-700': { id: string; $type: "color"; $value: string; }; 'palette-red-800': { id: string; $type: "color"; $value: string; }; 'palette-red-900': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-015': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-025': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-050': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-100': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-200': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-300': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-400': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-500': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-600': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-700': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-800': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-900': { id: string; $type: "color"; $value: string; }; 'palette-teal-050': { id: string; $type: "color"; $value: string; }; 'palette-teal-100': { id: string; $type: "color"; $value: string; }; 'palette-teal-200': { id: string; $type: "color"; $value: string; }; 'palette-teal-300': { id: string; $type: "color"; $value: string; }; 'palette-teal-400': { id: string; $type: "color"; $value: string; }; 'palette-teal-500': { id: string; $type: "color"; $value: string; }; 'palette-teal-600': { id: string; $type: "color"; $value: string; }; 'palette-teal-700': { id: string; $type: "color"; $value: string; }; 'palette-teal-800': { id: string; $type: "color"; $value: string; }; 'palette-teal-900': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-025': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-050': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-100': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-200': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-300': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-400': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-500': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-600': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-700': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-800': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-900': { id: string; $type: "color"; $value: string; }; 'palette-yellow-050': { id: string; $type: "color"; $value: string; }; 'palette-yellow-100': { id: string; $type: "color"; $value: string; }; 'palette-yellow-200': { id: string; $type: "color"; $value: string; }; 'palette-yellow-300': { id: string; $type: "color"; $value: string; }; 'palette-yellow-400': { id: string; $type: "color"; $value: string; }; 'palette-yellow-500': { id: string; $type: "color"; $value: string; }; 'palette-yellow-600': { id: string; $type: "color"; $value: string; }; 'palette-yellow-700': { id: string; $type: "color"; $value: string; }; 'palette-yellow-800': { id: string; $type: "color"; $value: string; }; 'palette-yellow-900': { id: string; $type: "color"; $value: string; }; 'radius-2': { id: string; $type: "dimension"; $value: string; }; 'radius-3': { id: string; $type: "dimension"; $value: string; }; 'radius-4': { id: string; $type: "dimension"; $value: string; }; 'radius-6': { id: string; $type: "dimension"; $value: string; }; 'radius-8': { id: string; $type: "dimension"; $value: string; }; 'radius-10': { id: string; $type: "dimension"; $value: string; }; 'radius-button-medium': { id: string; $type: "dimension"; $value: string; }; 'radius-button-small': { id: string; $type: "dimension"; $value: string; }; 'radius-dropdown': { id: string; $type: "dimension"; $value: string; }; 'radius-full': { id: string; $type: "dimension"; $value: string; }; 'radius-labels': { id: string; $type: "dimension"; $value: string; }; 'space-0': { id: string; $type: "dimension"; $value: string; }; 'space-025': { id: string; $type: "dimension"; $value: string; }; 'space-050': { id: string; $type: "dimension"; $value: string; }; 'space-075': { id: string; $type: "dimension"; $value: string; }; 'space-100': { id: string; $type: "dimension"; $value: string; }; 'space-125': { id: string; $type: "dimension"; $value: string; }; 'space-150': { id: string; $type: "dimension"; $value: string; }; 'space-175': { id: string; $type: "dimension"; $value: string; }; 'space-200': { id: string; $type: "dimension"; $value: string; }; 'space-225': { id: string; $type: "dimension"; $value: string; }; 'space-250': { id: string; $type: "dimension"; $value: string; }; 'space-275': { id: string; $type: "dimension"; $value: string; }; 'space-300': { id: string; $type: "dimension"; $value: string; }; 'space-350': { id: string; $type: "dimension"; $value: string; }; 'space-400': { id: string; $type: "dimension"; $value: string; }; 'space-450': { id: string; $type: "dimension"; $value: string; }; 'space-500': { id: string; $type: "dimension"; $value: string; }; 'space-600': { id: string; $type: "dimension"; $value: string; }; 'space-800': { id: string; $type: "dimension"; $value: string; }; 'space-900': { id: string; $type: "dimension"; $value: string; }; 'space-1000': { id: string; $type: "dimension"; $value: string; }; 'space-1200': { id: string; $type: "dimension"; $value: string; }; 'space-1600': { id: string; $type: "dimension"; $value: string; }; 'space-2000': { id: string; $type: "dimension"; $value: string; }; 'space-2400': { id: string; $type: "dimension"; $value: string; }; 'space-2800': { id: string; $type: "dimension"; $value: string; }; 'space-3200': { id: string; $type: "dimension"; $value: string; }; 'space-icon-lg': { id: string; $type: "dimension"; $value: string; }; 'space-icon-md': { id: string; $type: "dimension"; $value: string; }; 'space-icon-sm': { id: string; $type: "dimension"; $value: string; }; 'space-icon-v2-lg': { id: string; $type: "dimension"; $value: string; }; 'space-icon-v2-md': { id: string; $type: "dimension"; $value: string; }; 'space-icon-v2-sm': { id: string; $type: "dimension"; $value: string; }; 'space-icon-v2-xl': { id: string; $type: "dimension"; $value: string; }; 'space-icon-xl': { id: string; $type: "dimension"; $value: string; }; 'space-icon-xs': { id: string; $type: "dimension"; $value: string; }; 'space-icon-xxs': { id: string; $type: "dimension"; $value: string; }; 'space-padding-button-medium': { id: string; $type: "dimension"; $value: string; }; 'space-padding-button-small': { id: string; $type: "dimension"; $value: string; }; 'space-padding-header': { id: string; $type: "dimension"; $value: string; }; 'text-brand-h1': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h2': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h3': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h4': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h5': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h6': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-label': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-p': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-p-small': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-p-subheader': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-code': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-h1': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-h2': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-h3': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-h4': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-label': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-label-secondary': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-link': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-link-secondary': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-p': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-p-active': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-p-secondary': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-ps': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-ps-active': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-pxs': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-pxs-active': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-pxs-secondary': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; }; styles: { text: readonly ("brand-h1" | "brand-h2" | "brand-h3" | "brand-h4" | "brand-h5" | "brand-h6" | "brand-label" | "brand-p" | "brand-p-small" | "brand-p-subheader" | "product-code" | "product-h1" | "product-h2" | "product-h3" | "product-h4" | "product-label" | "product-label-secondary" | "product-link" | "product-link-secondary" | "product-p" | "product-p-active" | "product-p-secondary" | "product-ps" | "product-ps-active" | "product-pxs" | "product-pxs-active" | "product-pxs-secondary")[]; }; colorScheme: ResolvedColorScheme; className: string; version: string; } | { name: string; tokens: DeepPartial<{ ai: { "fill-mix-amount": number; "ring-stop-mix-amount-01": number; "ring-stop-mix-amount-02": number; "ring-stop-mix-amount-03": number; }; color: { "ai-fill-stop-01": string; "ai-fill-stop-02": string; "ai-fill-surface": string; "ai-ring-fade": string; "ai-ring-gap": string; "ai-ring-stop-01": string; "ai-ring-stop-02": string; "ai-ring-stop-03": string; "background-default": string; "banner-caution-background": string; "banner-caution-border": string; "banner-default-background": string; "banner-default-border": string; "banner-error-background": string; "banner-error-border": string; "banner-feature-background": string; "banner-feature-border": string; "banner-information-background": string; "banner-information-border": string; "banner-success-background": string; "banner-success-border": string; "banner-warning-background": string; "border-accent": string; "border-accent-disabled": string; "border-accent-hover": string; "border-accent-minimal": string; "border-accent-subtle": string; "border-accent-subtle-hover": string; "border-active": string; "border-active-hover": string; "border-base": string; "border-base-hover": string; "border-bold": string; "border-bold-hover": string; "border-caution": string; "border-caution-disabled": string; "border-caution-hover": string; "border-caution-minimal": string; "border-caution-subtle": string; "border-caution-subtle-hover": string; "border-critical": string; "border-critical-disabled": string; "border-critical-hover": string; "border-critical-minimal": string; "border-critical-subtle": string; "border-critical-subtle-hover": string; "border-dropdown": string; "border-feature-border-information": string; "border-feature-border-information-disabled": string; "border-feature-border-information-hover": string; "border-feature-border-information-minimal": string; "border-feature-border-information-subtle": string; "border-feature-border-information-subtle-hover": string; "border-focus": string; "border-information": string; "border-information-disabled": string; "border-information-hover": string; "border-information-minimal": string; "border-information-subtle": string; "border-information-subtle-hover": string; "border-invert": string; "border-minimal": string; "border-minimal-hover": string; "border-success": string; "border-success-disabled": string; "border-success-hover": string; "border-success-minimal": string; "border-success-subtle": string; "border-success-subtle-hover": string; "button-surface-invert": string; "button-surface-invert-hover": string; "chart-base-1": string; "chart-base-2": string; "chart-base-3": string; "chart-base-4": string; "chart-positive-1": string; "chart-positive-2": string; "chart-positive-3": string; "chart-positive-4": string; "chart-secondary-1": string; "chart-secondary-2": string; "chart-secondary-3": string; "chart-secondary-4": string; "date_picker-background": string; "date_picker-background-hover": string; "date_picker-background-selected": string; "icon-accent": string; "icon-accent-disabled": string; "icon-accent-hover": string; "icon-accent-invert-disabled": string; "icon-base": string; "icon-base-disabled": string; "icon-base-hover": string; "icon-bold": string; "icon-button": string; "icon-caution": string; "icon-caution-disabled": string; "icon-critical": string; "icon-critical-disabled": string; "icon-critical-hover": string; "icon-critical-invert-disabled": string; "icon-feature": string; "icon-feature-disabled": string; "icon-information": string; "icon-information-disabled": string; "icon-invert": string; "icon-minimal": string; "icon-navigation": string; "icon-subtle": string; "icon-success": string; "icon-success-disabled": string; "icon-white": string; "label-blue-background": string; "label-blue-icon": string; "label-blue-text": string; "label-clementine-background": string; "label-clementine-icon": string; "label-clementine-text": string; "label-green-background": string; "label-green-icon": string; "label-green-text": string; "label-grey-background": string; "label-grey-icon": string; "label-grey-text": string; "label-plum-background": string; "label-plum-icon": string; "label-plum-text": string; "label-purple-background": string; "label-purple-icon": string; "label-purple-text": string; "label-raspberry-background": string; "label-raspberry-icon": string; "label-raspberry-text": string; "label-red-background": string; "label-red-icon": string; "label-red-text": string; "label-teal-background": string; "label-teal-icon": string; "label-teal-text": string; "label-yellow-background": string; "label-yellow-icon": string; "label-yellow-text": string; "navigation-background": string; "navigation-background-hover": string; "navigation-background-selected": string; "navigation-icon": string; "navigation-icon-collapsed": string; "navigation-icon-selected": string; "navigation-text": string; "navigation-text-selected": string; "snackbar-default-background": string; "snackbar-default-close-background-hover": string; "snackbar-error-background": string; "snackbar-error-close-background-hover": string; "snackbar-success-background": string; "snackbar-success-close-background-hover": string; "status-blue": string; "status-green": string; "status-purple": string; "status-red": string; "status-yellow": string; "surface-accent": string; "surface-accent-disabled": string; "surface-accent-hover": string; "surface-accent-minimal": string; "surface-accent-subtle": string; "surface-active": string; "surface-active-disabled": string; "surface-active-hover": string; "surface-base": string; "surface-base-disabled": string; "surface-base-hover": string; "surface-bold": string; "surface-bold-hover": string; "surface-caution": string; "surface-caution-bold": string; "surface-caution-disabled": string; "surface-caution-hover": string; "surface-caution-minimal": string; "surface-caution-subtle": string; "surface-caution-subtle-hover": string; "surface-critical": string; "surface-critical-bold": string; "surface-critical-disabled": string; "surface-critical-hover": string; "surface-critical-minimal": string; "surface-critical-subtle": string; "surface-critical-subtle-hover": string; "surface-information": string; "surface-information-bold": string; "surface-information-disabled": string; "surface-information-hover": string; "surface-information-minimal": string; "surface-information-subtle": string; "surface-information-subtle-hover": string; "surface-invert": string; "surface-invert-bold": string; "surface-invert-bold-hover": string; "surface-invert-hover": string; "surface-invert-subtle": string; "surface-subtle": string; "surface-subtle-disabled": string; "surface-subtle-hover": string; "surface-success": string; "surface-success-bold": string; "surface-success-disabled": string; "surface-success-hover": string; "surface-success-minimal": string; "surface-success-subtle": string; "surface-success-subtle-hover": string; "surface-workflow-data": string; "surface-workflow-delays": string; "surface-workflow-flowcontrol": string; "surface-workflow-messages": string; "text-accent": string; "text-accent-bold": string; "text-accent-disabled": string; "text-accent-hover": string; "text-accent-invert-disabled": string; "text-active": string; "text-base": string; "text-base-disabled": string; "text-base-hover": string; "text-bold": string; "text-bold-hover": string; "text-caution": string; "text-caution-bold": string; "text-caution-disabled": string; "text-caution-hover": string; "text-caution-subtle": string; "text-code": string; "text-critical": string; "text-critical-bold": string; "text-critical-disabled": string; "text-critical-hover": string; "text-critical-invert-disabled": string; "text-critical-subtle": string; "text-information": string; "text-information-bold": string; "text-information-disabled": string; "text-information-hover": string; "text-information-subtle": string; "text-invert": string; "text-minimal": string; "text-placeholder": string; "text-subtle": string; "text-success": string; "text-success-bold": string; "text-success-disabled": string; "text-success-hover": string; "text-success-subtle": string; "text-white": string; "toggle-surface-active": string; "toggle-surface-active-disabled": string; "toggle-surface-active-hover": string; "toggle-surface-base": string; "toggle-surface-base-disabled": string; "toggle-surface-base-hover": string; }; palette: { "blue_wave-025": string; "blue_wave-050": string; "blue_wave-100": string; "blue_wave-200": string; "blue_wave-300": string; "blue_wave-400": string; "blue_wave-500": string; "blue_wave-600": string; "blue_wave-700": string; "blue_wave-800": string; "blue_wave-900": string; "blue-050": string; "blue-100": string; "blue-200": string; "blue-300": string; "blue-400": string; "blue-500": string; "blue-600": string; "blue-700": string; "blue-800": string; "blue-900": string; "brand-forest": string; "brand-forest-dark": string; "brand-forest-light": string; "green_verdant-015": string; "green_verdant-025": string; "green_verdant-050": string; "green_verdant-100": string; "green_verdant-200": string; "green_verdant-300": string; "green_verdant-400": string; "green_verdant-500": string; "green_verdant-550": string; "green_verdant-600": string; "green_verdant-700": string; "green_verdant-800": string; "green_verdant-850": string; "green_verdant-900": string; "green-050": string; "green-100": string; "green-200": string; "green-300": string; "green-400": string; "green-500": string; "green-600": string; "green-700": string; "green-800": string; "green-900": string; "grey_charcoal-015": string; "grey_charcoal-025": string; "grey_charcoal-050": string; "grey_charcoal-100": string; "grey_charcoal-200": string; "grey_charcoal-250": string; "grey_charcoal-300": string; "grey_charcoal-350": string; "grey_charcoal-400": string; "grey_charcoal-500": string; "grey_charcoal-600": string; "grey_charcoal-650": string; "grey_charcoal-700": string; "grey_charcoal-750": string; "grey_charcoal-800": string; "grey_charcoal-850": string; "grey_charcoal-900": string; "grey_charcoal-black": string; "grey_charcoal-white": string; "grey_warm_charcoal-015": string; "grey_warm_charcoal-025": string; "grey_warm_charcoal-050": string; "grey_warm_charcoal-100": string; "grey_warm_charcoal-200": string; "grey_warm_charcoal-300": string; "grey_warm_charcoal-400": string; "grey_warm_charcoal-500": string; "grey_warm_charcoal-600": string; "grey_warm_charcoal-700": string; "grey_warm_charcoal-800": string; "grey_warm_charcoal-900": string; "grey_warm_charcoal-black": string; "grey_warm_charcoal-white": string; "grey-050": string; "grey-100": string; "grey-200": string; "grey-300": string; "grey-400": string; "grey-500": string; "grey-600": string; "grey-700": string; "grey-800": string; "grey-900": string; "grey-black": string; "grey-white": string; "orange_zest-025": string; "orange_zest-050": string; "orange_zest-100": string; "orange_zest-200": string; "orange_zest-300": string; "orange_zest-400": string; "orange_zest-500": string; "orange_zest-600": string; "orange_zest-700": string; "orange_zest-800": string; "orange_zest-900": string; "orange-050": string; "orange-100": string; "orange-200": string; "orange-300": string; "orange-400": string; "orange-500": string; "orange-600": string; "orange-700": string; "orange-800": string; "orange-900": string; "pink_blush-025": string; "pink_blush-050": string; "pink_blush-100": string; "pink_blush-200": string; "pink_blush-300": string; "pink_blush-400": string; "pink_blush-500": string; "pink_blush-600": string; "pink_blush-700": string; "pink_blush-800": string; "pink_blush-900": string; "plum-100": string; "plum-200": string; "plum-300": string; "plum-400": string; "plum-500": string; "plum-600": string; "plum-700": string; "plum-800": string; "plum-900": string; "plum-950": string; "purple_nova-025": string; "purple_nova-050": string; "purple_nova-100": string; "purple_nova-150": string; "purple_nova-200": string; "purple_nova-300": string; "purple_nova-400": string; "purple_nova-500": string; "purple_nova-600": string; "purple_nova-700": string; "purple_nova-750": string; "purple_nova-800": string; "purple_nova-900": string; "purple-050": string; "purple-100": string; "purple-200": string; "purple-300": string; "purple-400": string; "purple-500": string; "purple-600": string; "purple-700": string; "purple-800": string; "purple-900": string; "raspberry-050": string; "raspberry-100": string; "raspberry-200": string; "raspberry-300": string; "raspberry-400": string; "raspberry-500": string; "raspberry-600": string; "raspberry-700": string; "raspberry-800": string; "raspberry-900": string; "red_flame-025": string; "red_flame-050": string; "red_flame-100": string; "red_flame-200": string; "red_flame-300": string; "red_flame-400": string; "red_flame-500": string; "red_flame-600": string; "red_flame-700": string; "red_flame-800": string; "red_flame-900": string; "red-050": string; "red-100": string; "red-200": string; "red-300": string; "red-400": string; "red-500": string; "red-600": string; "red-700": string; "red-800": string; "red-900": string; "teal_spruce-015": string; "teal_spruce-025": string; "teal_spruce-050": string; "teal_spruce-100": string; "teal_spruce-200": string; "teal_spruce-300": string; "teal_spruce-400": string; "teal_spruce-500": string; "teal_spruce-600": string; "teal_spruce-700": string; "teal_spruce-800": string; "teal_spruce-900": string; "teal-050": string; "teal-100": string; "teal-200": string; "teal-300": string; "teal-400": string; "teal-500": string; "teal-600": string; "teal-700": string; "teal-800": string; "teal-900": string; "yellow_mustard-025": string; "yellow_mustard-050": string; "yellow_mustard-100": string; "yellow_mustard-200": string; "yellow_mustard-300": string; "yellow_mustard-400": string; "yellow_mustard-500": string; "yellow_mustard-600": string; "yellow_mustard-700": string; "yellow_mustard-800": string; "yellow_mustard-900": string; "yellow-050": string; "yellow-100": string; "yellow-200": string; "yellow-300": string; "yellow-400": string; "yellow-500": string; "yellow-600": string; "yellow-700": string; "yellow-800": string; "yellow-900": string; }; radius: { 2: string; 3: string; 4: string; 6: string; 8: string; 10: string; "button-medium": string; "button-small": string; dropdown: string; full: string; labels: string; }; "font-size": { button: string; l: string; m: string; s: string; xl: string; xs: string; xxl: string; xxs: string; xxxl: string; }; "font-family": Record<"mono" | "sans", string>; "font-weight": { bold: number; heavy: number; light: number; medium: number; regular: number; semibold: number; }; border: { 0: string; "width-025": string; "width-050": string; "width-0125": string; }; space: { 0: string; "025": string; "050": string; "075": string; 100: string; 125: string; 150: string; 175: string; 200: string; 225: string; 250: string; 275: string; 300: string; 350: string; 400: string; 450: string; 500: string; 600: string; 800: string; 900: string; 1000: string; 1200: string; 1600: string; 2000: string; 2400: string; 2800: string; 3200: string; "icon-lg": string; "icon-md": string; "icon-sm": string; "icon-v2-lg": string; "icon-v2-md": string; "icon-v2-sm": string; "icon-v2-xl": string; "icon-xl": string; "icon-xs": string; "icon-xxs": string; "padding-button-medium": string; "padding-button-small": string; "padding-header": string; }; text: Record<"brand-h1-font-family" | "brand-h1-font-size" | "brand-h1-font-style" | "brand-h1-font-weight" | "brand-h1-letter-spacing" | "brand-h1-line-height" | "brand-h1-text-transform" | "brand-h1-text-decoration" | "brand-h2-font-family" | "brand-h2-font-size" | "brand-h2-font-style" | "brand-h2-font-weight" | "brand-h2-letter-spacing" | "brand-h2-line-height" | "brand-h2-text-transform" | "brand-h2-text-decoration" | "brand-h3-font-family" | "brand-h3-font-size" | "brand-h3-font-style" | "brand-h3-font-weight" | "brand-h3-letter-spacing" | "brand-h3-line-height" | "brand-h3-text-transform" | "brand-h3-text-decoration" | "brand-h4-font-family" | "brand-h4-font-size" | "brand-h4-font-style" | "brand-h4-font-weight" | "brand-h4-letter-spacing" | "brand-h4-line-height" | "brand-h4-text-transform" | "brand-h4-text-decoration" | "brand-h5-font-family" | "brand-h5-font-size" | "brand-h5-font-style" | "brand-h5-font-weight" | "brand-h5-letter-spacing" | "brand-h5-line-height" | "brand-h5-text-transform" | "brand-h5-text-decoration" | "brand-h6-font-family" | "brand-h6-font-size" | "brand-h6-font-style" | "brand-h6-font-weight" | "brand-h6-letter-spacing" | "brand-h6-line-height" | "brand-h6-text-transform" | "brand-h6-text-decoration" | "brand-label-font-family" | "brand-label-font-size" | "brand-label-font-style" | "brand-label-font-weight" | "brand-label-letter-spacing" | "brand-label-line-height" | "brand-label-text-transform" | "brand-label-text-decoration" | "brand-p-font-family" | "brand-p-font-size" | "brand-p-font-style" | "brand-p-font-weight" | "brand-p-letter-spacing" | "brand-p-line-height" | "brand-p-text-transform" | "brand-p-text-decoration" | "brand-p-small-font-family" | "brand-p-small-font-size" | "brand-p-small-font-style" | "brand-p-small-font-weight" | "brand-p-small-letter-spacing" | "brand-p-small-line-height" | "brand-p-small-text-transform" | "brand-p-small-text-decoration" | "brand-p-subheader-font-family" | "brand-p-subheader-font-size" | "brand-p-subheader-font-style" | "brand-p-subheader-font-weight" | "brand-p-subheader-letter-spacing" | "brand-p-subheader-line-height" | "brand-p-subheader-text-transform" | "brand-p-subheader-text-decoration" | "product-code-font-family" | "product-code-font-size" | "product-code-font-style" | "product-code-font-weight" | "product-code-letter-spacing" | "product-code-line-height" | "product-code-text-transform" | "product-code-text-decoration" | "product-h1-font-family" | "product-h1-font-size" | "product-h1-font-style" | "product-h1-font-weight" | "product-h1-letter-spacing" | "product-h1-line-height" | "product-h1-text-transform" | "product-h1-text-decoration" | "product-h2-font-family" | "product-h2-font-size" | "product-h2-font-style" | "product-h2-font-weight" | "product-h2-letter-spacing" | "product-h2-line-height" | "product-h2-text-transform" | "product-h2-text-decoration" | "product-h3-font-family" | "product-h3-font-size" | "product-h3-font-style" | "product-h3-font-weight" | "product-h3-letter-spacing" | "product-h3-line-height" | "product-h3-text-transform" | "product-h3-text-decoration" | "product-h4-font-family" | "product-h4-font-size" | "product-h4-font-style" | "product-h4-font-weight" | "product-h4-letter-spacing" | "product-h4-line-height" | "product-h4-text-transform" | "product-h4-text-decoration" | "product-label-font-family" | "product-label-font-size" | "product-label-font-style" | "product-label-font-weight" | "product-label-letter-spacing" | "product-label-line-height" | "product-label-text-transform" | "product-label-text-decoration" | "product-label-secondary-font-family" | "product-label-secondary-font-size" | "product-label-secondary-font-style" | "product-label-secondary-font-weight" | "product-label-secondary-letter-spacing" | "product-label-secondary-line-height" | "product-label-secondary-text-transform" | "product-label-secondary-text-decoration" | "product-link-font-family" | "product-link-font-size" | "product-link-font-style" | "product-link-font-weight" | "product-link-letter-spacing" | "product-link-line-height" | "product-link-text-transform" | "product-link-text-decoration" | "product-link-secondary-font-family" | "product-link-secondary-font-size" | "product-link-secondary-font-style" | "product-link-secondary-font-weight" | "product-link-secondary-letter-spacing" | "product-link-secondary-line-height" | "product-link-secondary-text-transform" | "product-link-secondary-text-decoration" | "product-p-font-family" | "product-p-font-size" | "product-p-font-style" | "product-p-font-weight" | "product-p-letter-spacing" | "product-p-line-height" | "product-p-text-transform" | "product-p-text-decoration" | "product-p-active-font-family" | "product-p-active-font-size" | "product-p-active-font-style" | "product-p-active-font-weight" | "product-p-active-letter-spacing" | "product-p-active-line-height" | "product-p-active-text-transform" | "product-p-active-text-decoration" | "product-p-secondary-font-family" | "product-p-secondary-font-size" | "product-p-secondary-font-style" | "product-p-secondary-font-weight" | "product-p-secondary-letter-spacing" | "product-p-secondary-line-height" | "product-p-secondary-text-transform" | "product-p-secondary-text-decoration" | "product-ps-font-family" | "product-ps-font-size" | "product-ps-font-style" | "product-ps-font-weight" | "product-ps-letter-spacing" | "product-ps-line-height" | "product-ps-text-transform" | "product-ps-text-decoration" | "product-ps-active-font-family" | "product-ps-active-font-size" | "product-ps-active-font-style" | "product-ps-active-font-weight" | "product-ps-active-letter-spacing" | "product-ps-active-line-height" | "product-ps-active-text-transform" | "product-ps-active-text-decoration" | "product-pxs-font-family" | "product-pxs-font-size" | "product-pxs-font-style" | "product-pxs-font-weight" | "product-pxs-letter-spacing" | "product-pxs-line-height" | "product-pxs-text-transform" | "product-pxs-text-decoration" | "product-pxs-active-font-family" | "product-pxs-active-font-size" | "product-pxs-active-font-style" | "product-pxs-active-font-weight" | "product-pxs-active-letter-spacing" | "product-pxs-active-line-height" | "product-pxs-active-text-transform" | "product-pxs-active-text-decoration" | "product-pxs-secondary-font-family" | "product-pxs-secondary-font-size" | "product-pxs-secondary-font-style" | "product-pxs-secondary-font-weight" | "product-pxs-secondary-letter-spacing" | "product-pxs-secondary-line-height" | "product-pxs-secondary-text-transform" | "product-pxs-secondary-text-decoration", string>; depth: Record<"inset" | "onset" | "surface-1" | "surface-2" | "surface-3", string>; "depth-filter": Record<"surface-1" | "surface-2" | "surface-3", string>; focus: Record<"default", string>; motion: Record<"duration-fast-01" | "duration-fast-02" | "duration-moderate-01" | "duration-moderate-02" | "duration-slow-01" | "duration-slow-02" | "easing-entrance-expressive" | "easing-entrance-productive" | "easing-exit-expressive" | "easing-exit-productive" | "easing-standard-expressive" | "easing-standard-productive", string>; }> & { ai?: UnknownRecord | undefined; color?: UnknownRecord | undefined; palette?: UnknownRecord | undefined; radius?: UnknownRecord | undefined; "font-size"?: UnknownRecord | undefined; "font-family"?: UnknownRecord | undefined; "font-weight"?: UnknownRecord | undefined; border?: UnknownRecord | undefined; space?: UnknownRecord | undefined; text?: UnknownRecord | undefined; depth?: UnknownRecord | undefined; "depth-filter"?: UnknownRecord | undefined; focus?: UnknownRecord | undefined; motion?: UnknownRecord | undefined; }; tokensMeta: DeepPartial<{ 'ai-fill-mix-amount': { id: string; $type: "number"; $value: number; }; 'ai-ring-stop-mix-amount-01': { id: string; $type: "number"; $value: number; }; 'ai-ring-stop-mix-amount-02': { id: string; $type: "number"; $value: number; }; 'ai-ring-stop-mix-amount-03': { id: string; $type: "number"; $value: number; }; 'border-0': { id: string; $type: "dimension"; $value: string; }; 'border-width-025': { id: string; $type: "dimension"; $value: string; }; 'border-width-050': { id: string; $type: "dimension"; $value: string; }; 'border-width-0125': { id: string; $type: "dimension"; $value: string; }; 'color-ai-fill-stop-01': { id: string; $type: "color"; $value: string; }; 'color-ai-fill-stop-02': { id: string; $type: "color"; $value: string; }; 'color-ai-fill-surface': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-fade': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-gap': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-stop-01': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-stop-02': { id: string; $type: "color"; $value: string; }; 'color-ai-ring-stop-03': { id: string; $type: "color"; $value: string; }; 'color-background-default': { id: string; $type: "color"; $value: string; }; 'color-banner-caution-background': { id: string; $type: "color"; $value: string; }; 'color-banner-caution-border': { id: string; $type: "color"; $value: string; }; 'color-banner-default-background': { id: string; $type: "color"; $value: string; }; 'color-banner-default-border': { id: string; $type: "color"; $value: string; }; 'color-banner-error-background': { id: string; $type: "color"; $value: string; }; 'color-banner-error-border': { id: string; $type: "color"; $value: string; }; 'color-banner-feature-background': { id: string; $type: "color"; $value: string; }; 'color-banner-feature-border': { id: string; $type: "color"; $value: string; }; 'color-banner-information-background': { id: string; $type: "color"; $value: string; }; 'color-banner-information-border': { id: string; $type: "color"; $value: string; }; 'color-banner-success-background': { id: string; $type: "color"; $value: string; }; 'color-banner-success-border': { id: string; $type: "color"; $value: string; }; 'color-banner-warning-background': { id: string; $type: "color"; $value: string; }; 'color-border-accent': { id: string; $type: "color"; $value: string; }; 'color-border-accent-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-accent-hover': { id: string; $type: "color"; $value: string; }; 'color-border-accent-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-accent-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-accent-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-active': { id: string; $type: "color"; $value: string; }; 'color-border-active-hover': { id: string; $type: "color"; $value: string; }; 'color-border-base': { id: string; $type: "color"; $value: string; }; 'color-border-base-hover': { id: string; $type: "color"; $value: string; }; 'color-border-bold': { id: string; $type: "color"; $value: string; }; 'color-border-bold-hover': { id: string; $type: "color"; $value: string; }; 'color-border-caution': { id: string; $type: "color"; $value: string; }; 'color-border-caution-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-caution-hover': { id: string; $type: "color"; $value: string; }; 'color-border-caution-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-caution-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-caution-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-critical': { id: string; $type: "color"; $value: string; }; 'color-border-critical-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-critical-hover': { id: string; $type: "color"; $value: string; }; 'color-border-critical-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-critical-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-critical-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-dropdown': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-hover': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-feature-border-information-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-focus': { id: string; $type: "color"; $value: string; }; 'color-border-information': { id: string; $type: "color"; $value: string; }; 'color-border-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-information-hover': { id: string; $type: "color"; $value: string; }; 'color-border-information-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-information-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-information-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-border-invert': { id: string; $type: "color"; $value: string; }; 'color-border-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-minimal-hover': { id: string; $type: "color"; $value: string; }; 'color-border-success': { id: string; $type: "color"; $value: string; }; 'color-border-success-disabled': { id: string; $type: "color"; $value: string; }; 'color-border-success-hover': { id: string; $type: "color"; $value: string; }; 'color-border-success-minimal': { id: string; $type: "color"; $value: string; }; 'color-border-success-subtle': { id: string; $type: "color"; $value: string; }; 'color-border-success-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-button-surface-invert': { id: string; $type: "color"; $value: string; }; 'color-button-surface-invert-hover': { id: string; $type: "color"; $value: string; }; 'color-chart-base-1': { id: string; $type: "color"; $value: string; }; 'color-chart-base-2': { id: string; $type: "color"; $value: string; }; 'color-chart-base-3': { id: string; $type: "color"; $value: string; }; 'color-chart-base-4': { id: string; $type: "color"; $value: string; }; 'color-chart-positive-1': { id: string; $type: "color"; $value: string; }; 'color-chart-positive-2': { id: string; $type: "color"; $value: string; }; 'color-chart-positive-3': { id: string; $type: "color"; $value: string; }; 'color-chart-positive-4': { id: string; $type: "color"; $value: string; }; 'color-chart-secondary-1': { id: string; $type: "color"; $value: string; }; 'color-chart-secondary-2': { id: string; $type: "color"; $value: string; }; 'color-chart-secondary-3': { id: string; $type: "color"; $value: string; }; 'color-chart-secondary-4': { id: string; $type: "color"; $value: string; }; 'color-date_picker-background': { id: string; $type: "color"; $value: string; }; 'color-date_picker-background-hover': { id: string; $type: "color"; $value: string; }; 'color-date_picker-background-selected': { id: string; $type: "color"; $value: string; }; 'color-icon-accent': { id: string; $type: "color"; $value: string; }; 'color-icon-accent-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-accent-hover': { id: string; $type: "color"; $value: string; }; 'color-icon-accent-invert-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-base': { id: string; $type: "color"; $value: string; }; 'color-icon-base-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-base-hover': { id: string; $type: "color"; $value: string; }; 'color-icon-bold': { id: string; $type: "color"; $value: string; }; 'color-icon-button': { id: string; $type: "color"; $value: string; }; 'color-icon-caution': { id: string; $type: "color"; $value: string; }; 'color-icon-caution-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-critical': { id: string; $type: "color"; $value: string; }; 'color-icon-critical-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-critical-hover': { id: string; $type: "color"; $value: string; }; 'color-icon-critical-invert-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-feature': { id: string; $type: "color"; $value: string; }; 'color-icon-feature-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-information': { id: string; $type: "color"; $value: string; }; 'color-icon-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-invert': { id: string; $type: "color"; $value: string; }; 'color-icon-minimal': { id: string; $type: "color"; $value: string; }; 'color-icon-navigation': { id: string; $type: "color"; $value: string; }; 'color-icon-subtle': { id: string; $type: "color"; $value: string; }; 'color-icon-success': { id: string; $type: "color"; $value: string; }; 'color-icon-success-disabled': { id: string; $type: "color"; $value: string; }; 'color-icon-white': { id: string; $type: "color"; $value: string; }; 'color-label-blue-background': { id: string; $type: "color"; $value: string; }; 'color-label-blue-icon': { id: string; $type: "color"; $value: string; }; 'color-label-blue-text': { id: string; $type: "color"; $value: string; }; 'color-label-clementine-background': { id: string; $type: "color"; $value: string; }; 'color-label-clementine-icon': { id: string; $type: "color"; $value: string; }; 'color-label-clementine-text': { id: string; $type: "color"; $value: string; }; 'color-label-green-background': { id: string; $type: "color"; $value: string; }; 'color-label-green-icon': { id: string; $type: "color"; $value: string; }; 'color-label-green-text': { id: string; $type: "color"; $value: string; }; 'color-label-grey-background': { id: string; $type: "color"; $value: string; }; 'color-label-grey-icon': { id: string; $type: "color"; $value: string; }; 'color-label-grey-text': { id: string; $type: "color"; $value: string; }; 'color-label-plum-background': { id: string; $type: "color"; $value: string; }; 'color-label-plum-icon': { id: string; $type: "color"; $value: string; }; 'color-label-plum-text': { id: string; $type: "color"; $value: string; }; 'color-label-purple-background': { id: string; $type: "color"; $value: string; }; 'color-label-purple-icon': { id: string; $type: "color"; $value: string; }; 'color-label-purple-text': { id: string; $type: "color"; $value: string; }; 'color-label-raspberry-background': { id: string; $type: "color"; $value: string; }; 'color-label-raspberry-icon': { id: string; $type: "color"; $value: string; }; 'color-label-raspberry-text': { id: string; $type: "color"; $value: string; }; 'color-label-red-background': { id: string; $type: "color"; $value: string; }; 'color-label-red-icon': { id: string; $type: "color"; $value: string; }; 'color-label-red-text': { id: string; $type: "color"; $value: string; }; 'color-label-teal-background': { id: string; $type: "color"; $value: string; }; 'color-label-teal-icon': { id: string; $type: "color"; $value: string; }; 'color-label-teal-text': { id: string; $type: "color"; $value: string; }; 'color-label-yellow-background': { id: string; $type: "color"; $value: string; }; 'color-label-yellow-icon': { id: string; $type: "color"; $value: string; }; 'color-label-yellow-text': { id: string; $type: "color"; $value: string; }; 'color-navigation-background': { id: string; $type: "color"; $value: string; }; 'color-navigation-background-hover': { id: string; $type: "color"; $value: string; }; 'color-navigation-background-selected': { id: string; $type: "color"; $value: string; }; 'color-navigation-icon': { id: string; $type: "color"; $value: string; }; 'color-navigation-icon-collapsed': { id: string; $type: "color"; $value: string; }; 'color-navigation-icon-selected': { id: string; $type: "color"; $value: string; }; 'color-navigation-text': { id: string; $type: "color"; $value: string; }; 'color-navigation-text-selected': { id: string; $type: "color"; $value: string; }; 'color-snackbar-default-background': { id: string; $type: "color"; $value: string; }; 'color-snackbar-default-close-background-hover': { id: string; $type: "color"; $value: string; }; 'color-snackbar-error-background': { id: string; $type: "color"; $value: string; }; 'color-snackbar-error-close-background-hover': { id: string; $type: "color"; $value: string; }; 'color-snackbar-success-background': { id: string; $type: "color"; $value: string; }; 'color-snackbar-success-close-background-hover': { id: string; $type: "color"; $value: string; }; 'color-status-blue': { id: string; $type: "color"; $value: string; }; 'color-status-green': { id: string; $type: "color"; $value: string; }; 'color-status-purple': { id: string; $type: "color"; $value: string; }; 'color-status-red': { id: string; $type: "color"; $value: string; }; 'color-status-yellow': { id: string; $type: "color"; $value: string; }; 'color-surface-accent': { id: string; $type: "color"; $value: string; }; 'color-surface-accent-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-accent-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-accent-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-accent-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-active': { id: string; $type: "color"; $value: string; }; 'color-surface-active-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-active-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-base': { id: string; $type: "color"; $value: string; }; 'color-surface-base-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-base-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-bold-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-caution': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-caution-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-critical': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-critical-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-information': { id: string; $type: "color"; $value: string; }; 'color-surface-information-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-information-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-information-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-information-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-information-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-invert': { id: string; $type: "color"; $value: string; }; 'color-surface-invert-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-invert-bold-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-invert-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-invert-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-subtle-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-success': { id: string; $type: "color"; $value: string; }; 'color-surface-success-bold': { id: string; $type: "color"; $value: string; }; 'color-surface-success-disabled': { id: string; $type: "color"; $value: string; }; 'color-surface-success-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-success-minimal': { id: string; $type: "color"; $value: string; }; 'color-surface-success-subtle': { id: string; $type: "color"; $value: string; }; 'color-surface-success-subtle-hover': { id: string; $type: "color"; $value: string; }; 'color-surface-workflow-data': { id: string; $type: "color"; $value: string; }; 'color-surface-workflow-delays': { id: string; $type: "color"; $value: string; }; 'color-surface-workflow-flowcontrol': { id: string; $type: "color"; $value: string; }; 'color-surface-workflow-messages': { id: string; $type: "color"; $value: string; }; 'color-text-accent': { id: string; $type: "color"; $value: string; }; 'color-text-accent-bold': { id: string; $type: "color"; $value: string; }; 'color-text-accent-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-accent-hover': { id: string; $type: "color"; $value: string; }; 'color-text-accent-invert-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-active': { id: string; $type: "color"; $value: string; }; 'color-text-base': { id: string; $type: "color"; $value: string; }; 'color-text-base-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-base-hover': { id: string; $type: "color"; $value: string; }; 'color-text-bold': { id: string; $type: "color"; $value: string; }; 'color-text-bold-hover': { id: string; $type: "color"; $value: string; }; 'color-text-caution': { id: string; $type: "color"; $value: string; }; 'color-text-caution-bold': { id: string; $type: "color"; $value: string; }; 'color-text-caution-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-caution-hover': { id: string; $type: "color"; $value: string; }; 'color-text-caution-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-code': { id: string; $type: "color"; $value: string; }; 'color-text-critical': { id: string; $type: "color"; $value: string; }; 'color-text-critical-bold': { id: string; $type: "color"; $value: string; }; 'color-text-critical-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-critical-hover': { id: string; $type: "color"; $value: string; }; 'color-text-critical-invert-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-critical-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-information': { id: string; $type: "color"; $value: string; }; 'color-text-information-bold': { id: string; $type: "color"; $value: string; }; 'color-text-information-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-information-hover': { id: string; $type: "color"; $value: string; }; 'color-text-information-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-invert': { id: string; $type: "color"; $value: string; }; 'color-text-minimal': { id: string; $type: "color"; $value: string; }; 'color-text-placeholder': { id: string; $type: "color"; $value: string; }; 'color-text-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-success': { id: string; $type: "color"; $value: string; }; 'color-text-success-bold': { id: string; $type: "color"; $value: string; }; 'color-text-success-disabled': { id: string; $type: "color"; $value: string; }; 'color-text-success-hover': { id: string; $type: "color"; $value: string; }; 'color-text-success-subtle': { id: string; $type: "color"; $value: string; }; 'color-text-white': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-active': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-active-disabled': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-active-hover': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-base': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-base-disabled': { id: string; $type: "color"; $value: string; }; 'color-toggle-surface-base-hover': { id: string; $type: "color"; $value: string; }; 'depth-inset': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'depth-onset': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'depth-surface-1': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'depth-surface-2': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'depth-surface-3': { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; focus: { id: string; $type: "shadow"; $value: { offsetX: string; offsetY: string; blur: string; spread: string; color: string; inset?: boolean | undefined; }[]; }; 'font-family-mono': { id: string; $type: "fontFamily"; $value: string[]; }; 'font-family-sans': { id: string; $type: "fontFamily"; $value: string[]; }; 'font-size-button': { id: string; $type: "dimension"; $value: string; }; 'font-size-l': { id: string; $type: "dimension"; $value: string; }; 'font-size-m': { id: string; $type: "dimension"; $value: string; }; 'font-size-s': { id: string; $type: "dimension"; $value: string; }; 'font-size-xl': { id: string; $type: "dimension"; $value: string; }; 'font-size-xs': { id: string; $type: "dimension"; $value: string; }; 'font-size-xxl': { id: string; $type: "dimension"; $value: string; }; 'font-size-xxs': { id: string; $type: "dimension"; $value: string; }; 'font-size-xxxl': { id: string; $type: "dimension"; $value: string; }; 'font-weight-bold': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-heavy': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-light': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-medium': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-regular': { id: string; $type: "fontWeight"; $value: number; }; 'font-weight-semibold': { id: string; $type: "fontWeight"; $value: number; }; 'motion-duration-fast-01': { id: string; $type: "duration"; $value: string; }; 'motion-duration-fast-02': { id: string; $type: "duration"; $value: string; }; 'motion-duration-moderate-01': { id: string; $type: "duration"; $value: string; }; 'motion-duration-moderate-02': { id: string; $type: "duration"; $value: string; }; 'motion-duration-slow-01': { id: string; $type: "duration"; $value: string; }; 'motion-duration-slow-02': { id: string; $type: "duration"; $value: string; }; 'motion-easing-entrance-expressive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-entrance-productive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-exit-expressive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-exit-productive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-standard-expressive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'motion-easing-standard-productive': { id: string; $type: "cubicBezier"; $value: [number, number, number, number]; }; 'palette-blue_wave-025': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-050': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-100': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-200': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-300': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-400': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-500': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-600': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-700': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-800': { id: string; $type: "color"; $value: string; }; 'palette-blue_wave-900': { id: string; $type: "color"; $value: string; }; 'palette-blue-050': { id: string; $type: "color"; $value: string; }; 'palette-blue-100': { id: string; $type: "color"; $value: string; }; 'palette-blue-200': { id: string; $type: "color"; $value: string; }; 'palette-blue-300': { id: string; $type: "color"; $value: string; }; 'palette-blue-400': { id: string; $type: "color"; $value: string; }; 'palette-blue-500': { id: string; $type: "color"; $value: string; }; 'palette-blue-600': { id: string; $type: "color"; $value: string; }; 'palette-blue-700': { id: string; $type: "color"; $value: string; }; 'palette-blue-800': { id: string; $type: "color"; $value: string; }; 'palette-blue-900': { id: string; $type: "color"; $value: string; }; 'palette-brand-forest': { id: string; $type: "color"; $value: string; }; 'palette-brand-forest-dark': { id: string; $type: "color"; $value: string; }; 'palette-brand-forest-light': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-015': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-025': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-050': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-100': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-200': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-300': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-400': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-500': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-550': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-600': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-700': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-800': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-850': { id: string; $type: "color"; $value: string; }; 'palette-green_verdant-900': { id: string; $type: "color"; $value: string; }; 'palette-green-050': { id: string; $type: "color"; $value: string; }; 'palette-green-100': { id: string; $type: "color"; $value: string; }; 'palette-green-200': { id: string; $type: "color"; $value: string; }; 'palette-green-300': { id: string; $type: "color"; $value: string; }; 'palette-green-400': { id: string; $type: "color"; $value: string; }; 'palette-green-500': { id: string; $type: "color"; $value: string; }; 'palette-green-600': { id: string; $type: "color"; $value: string; }; 'palette-green-700': { id: string; $type: "color"; $value: string; }; 'palette-green-800': { id: string; $type: "color"; $value: string; }; 'palette-green-900': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-015': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-025': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-050': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-100': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-200': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-250': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-300': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-350': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-400': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-500': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-600': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-650': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-700': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-750': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-800': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-850': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-900': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-black': { id: string; $type: "color"; $value: string; }; 'palette-grey_charcoal-white': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-015': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-025': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-050': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-100': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-200': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-300': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-400': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-500': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-600': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-700': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-800': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-900': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-black': { id: string; $type: "color"; $value: string; }; 'palette-grey_warm_charcoal-white': { id: string; $type: "color"; $value: string; }; 'palette-grey-050': { id: string; $type: "color"; $value: string; }; 'palette-grey-100': { id: string; $type: "color"; $value: string; }; 'palette-grey-200': { id: string; $type: "color"; $value: string; }; 'palette-grey-300': { id: string; $type: "color"; $value: string; }; 'palette-grey-400': { id: string; $type: "color"; $value: string; }; 'palette-grey-500': { id: string; $type: "color"; $value: string; }; 'palette-grey-600': { id: string; $type: "color"; $value: string; }; 'palette-grey-700': { id: string; $type: "color"; $value: string; }; 'palette-grey-800': { id: string; $type: "color"; $value: string; }; 'palette-grey-900': { id: string; $type: "color"; $value: string; }; 'palette-grey-black': { id: string; $type: "color"; $value: string; }; 'palette-grey-white': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-025': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-050': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-100': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-200': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-300': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-400': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-500': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-600': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-700': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-800': { id: string; $type: "color"; $value: string; }; 'palette-orange_zest-900': { id: string; $type: "color"; $value: string; }; 'palette-orange-050': { id: string; $type: "color"; $value: string; }; 'palette-orange-100': { id: string; $type: "color"; $value: string; }; 'palette-orange-200': { id: string; $type: "color"; $value: string; }; 'palette-orange-300': { id: string; $type: "color"; $value: string; }; 'palette-orange-400': { id: string; $type: "color"; $value: string; }; 'palette-orange-500': { id: string; $type: "color"; $value: string; }; 'palette-orange-600': { id: string; $type: "color"; $value: string; }; 'palette-orange-700': { id: string; $type: "color"; $value: string; }; 'palette-orange-800': { id: string; $type: "color"; $value: string; }; 'palette-orange-900': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-025': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-050': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-100': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-200': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-300': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-400': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-500': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-600': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-700': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-800': { id: string; $type: "color"; $value: string; }; 'palette-pink_blush-900': { id: string; $type: "color"; $value: string; }; 'palette-plum-100': { id: string; $type: "color"; $value: string; }; 'palette-plum-200': { id: string; $type: "color"; $value: string; }; 'palette-plum-300': { id: string; $type: "color"; $value: string; }; 'palette-plum-400': { id: string; $type: "color"; $value: string; }; 'palette-plum-500': { id: string; $type: "color"; $value: string; }; 'palette-plum-600': { id: string; $type: "color"; $value: string; }; 'palette-plum-700': { id: string; $type: "color"; $value: string; }; 'palette-plum-800': { id: string; $type: "color"; $value: string; }; 'palette-plum-900': { id: string; $type: "color"; $value: string; }; 'palette-plum-950': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-025': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-050': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-100': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-150': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-200': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-300': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-400': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-500': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-600': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-700': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-750': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-800': { id: string; $type: "color"; $value: string; }; 'palette-purple_nova-900': { id: string; $type: "color"; $value: string; }; 'palette-purple-050': { id: string; $type: "color"; $value: string; }; 'palette-purple-100': { id: string; $type: "color"; $value: string; }; 'palette-purple-200': { id: string; $type: "color"; $value: string; }; 'palette-purple-300': { id: string; $type: "color"; $value: string; }; 'palette-purple-400': { id: string; $type: "color"; $value: string; }; 'palette-purple-500': { id: string; $type: "color"; $value: string; }; 'palette-purple-600': { id: string; $type: "color"; $value: string; }; 'palette-purple-700': { id: string; $type: "color"; $value: string; }; 'palette-purple-800': { id: string; $type: "color"; $value: string; }; 'palette-purple-900': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-050': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-100': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-200': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-300': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-400': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-500': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-600': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-700': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-800': { id: string; $type: "color"; $value: string; }; 'palette-raspberry-900': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-025': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-050': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-100': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-200': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-300': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-400': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-500': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-600': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-700': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-800': { id: string; $type: "color"; $value: string; }; 'palette-red_flame-900': { id: string; $type: "color"; $value: string; }; 'palette-red-050': { id: string; $type: "color"; $value: string; }; 'palette-red-100': { id: string; $type: "color"; $value: string; }; 'palette-red-200': { id: string; $type: "color"; $value: string; }; 'palette-red-300': { id: string; $type: "color"; $value: string; }; 'palette-red-400': { id: string; $type: "color"; $value: string; }; 'palette-red-500': { id: string; $type: "color"; $value: string; }; 'palette-red-600': { id: string; $type: "color"; $value: string; }; 'palette-red-700': { id: string; $type: "color"; $value: string; }; 'palette-red-800': { id: string; $type: "color"; $value: string; }; 'palette-red-900': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-015': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-025': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-050': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-100': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-200': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-300': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-400': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-500': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-600': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-700': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-800': { id: string; $type: "color"; $value: string; }; 'palette-teal_spruce-900': { id: string; $type: "color"; $value: string; }; 'palette-teal-050': { id: string; $type: "color"; $value: string; }; 'palette-teal-100': { id: string; $type: "color"; $value: string; }; 'palette-teal-200': { id: string; $type: "color"; $value: string; }; 'palette-teal-300': { id: string; $type: "color"; $value: string; }; 'palette-teal-400': { id: string; $type: "color"; $value: string; }; 'palette-teal-500': { id: string; $type: "color"; $value: string; }; 'palette-teal-600': { id: string; $type: "color"; $value: string; }; 'palette-teal-700': { id: string; $type: "color"; $value: string; }; 'palette-teal-800': { id: string; $type: "color"; $value: string; }; 'palette-teal-900': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-025': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-050': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-100': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-200': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-300': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-400': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-500': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-600': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-700': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-800': { id: string; $type: "color"; $value: string; }; 'palette-yellow_mustard-900': { id: string; $type: "color"; $value: string; }; 'palette-yellow-050': { id: string; $type: "color"; $value: string; }; 'palette-yellow-100': { id: string; $type: "color"; $value: string; }; 'palette-yellow-200': { id: string; $type: "color"; $value: string; }; 'palette-yellow-300': { id: string; $type: "color"; $value: string; }; 'palette-yellow-400': { id: string; $type: "color"; $value: string; }; 'palette-yellow-500': { id: string; $type: "color"; $value: string; }; 'palette-yellow-600': { id: string; $type: "color"; $value: string; }; 'palette-yellow-700': { id: string; $type: "color"; $value: string; }; 'palette-yellow-800': { id: string; $type: "color"; $value: string; }; 'palette-yellow-900': { id: string; $type: "color"; $value: string; }; 'radius-2': { id: string; $type: "dimension"; $value: string; }; 'radius-3': { id: string; $type: "dimension"; $value: string; }; 'radius-4': { id: string; $type: "dimension"; $value: string; }; 'radius-6': { id: string; $type: "dimension"; $value: string; }; 'radius-8': { id: string; $type: "dimension"; $value: string; }; 'radius-10': { id: string; $type: "dimension"; $value: string; }; 'radius-button-medium': { id: string; $type: "dimension"; $value: string; }; 'radius-button-small': { id: string; $type: "dimension"; $value: string; }; 'radius-dropdown': { id: string; $type: "dimension"; $value: string; }; 'radius-full': { id: string; $type: "dimension"; $value: string; }; 'radius-labels': { id: string; $type: "dimension"; $value: string; }; 'space-0': { id: string; $type: "dimension"; $value: string; }; 'space-025': { id: string; $type: "dimension"; $value: string; }; 'space-050': { id: string; $type: "dimension"; $value: string; }; 'space-075': { id: string; $type: "dimension"; $value: string; }; 'space-100': { id: string; $type: "dimension"; $value: string; }; 'space-125': { id: string; $type: "dimension"; $value: string; }; 'space-150': { id: string; $type: "dimension"; $value: string; }; 'space-175': { id: string; $type: "dimension"; $value: string; }; 'space-200': { id: string; $type: "dimension"; $value: string; }; 'space-225': { id: string; $type: "dimension"; $value: string; }; 'space-250': { id: string; $type: "dimension"; $value: string; }; 'space-275': { id: string; $type: "dimension"; $value: string; }; 'space-300': { id: string; $type: "dimension"; $value: string; }; 'space-350': { id: string; $type: "dimension"; $value: string; }; 'space-400': { id: string; $type: "dimension"; $value: string; }; 'space-450': { id: string; $type: "dimension"; $value: string; }; 'space-500': { id: string; $type: "dimension"; $value: string; }; 'space-600': { id: string; $type: "dimension"; $value: string; }; 'space-800': { id: string; $type: "dimension"; $value: string; }; 'space-900': { id: string; $type: "dimension"; $value: string; }; 'space-1000': { id: string; $type: "dimension"; $value: string; }; 'space-1200': { id: string; $type: "dimension"; $value: string; }; 'space-1600': { id: string; $type: "dimension"; $value: string; }; 'space-2000': { id: string; $type: "dimension"; $value: string; }; 'space-2400': { id: string; $type: "dimension"; $value: string; }; 'space-2800': { id: string; $type: "dimension"; $value: string; }; 'space-3200': { id: string; $type: "dimension"; $value: string; }; 'space-icon-lg': { id: string; $type: "dimension"; $value: string; }; 'space-icon-md': { id: string; $type: "dimension"; $value: string; }; 'space-icon-sm': { id: string; $type: "dimension"; $value: string; }; 'space-icon-v2-lg': { id: string; $type: "dimension"; $value: string; }; 'space-icon-v2-md': { id: string; $type: "dimension"; $value: string; }; 'space-icon-v2-sm': { id: string; $type: "dimension"; $value: string; }; 'space-icon-v2-xl': { id: string; $type: "dimension"; $value: string; }; 'space-icon-xl': { id: string; $type: "dimension"; $value: string; }; 'space-icon-xs': { id: string; $type: "dimension"; $value: string; }; 'space-icon-xxs': { id: string; $type: "dimension"; $value: string; }; 'space-padding-button-medium': { id: string; $type: "dimension"; $value: string; }; 'space-padding-button-small': { id: string; $type: "dimension"; $value: string; }; 'space-padding-header': { id: string; $type: "dimension"; $value: string; }; 'text-brand-h1': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h2': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h3': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h4': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h5': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-h6': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-label': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-p': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-p-small': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-brand-p-subheader': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-code': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-h1': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-h2': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-h3': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-h4': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-label': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-label-secondary': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-link': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-link-secondary': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-p': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-p-active': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-p-secondary': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-ps': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-ps-active': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-pxs': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-pxs-active': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; 'text-product-pxs-secondary': { id: string; $type: "typography"; $value: { fontFamily?: string[] | undefined; fontSize?: string | undefined; fontStyle?: string | undefined; fontWeight?: number | undefined; letterSpacing?: string | undefined; lineHeight?: string | number | undefined; textTransform?: string | undefined; }; }; }> & { 'ai-fill-mix-amount'?: UnknownRecord | undefined; 'ai-ring-stop-mix-amount-01'?: UnknownRecord | undefined; 'ai-ring-stop-mix-amount-02'?: UnknownRecord | undefined; 'ai-ring-stop-mix-amount-03'?: UnknownRecord | undefined; 'border-0'?: UnknownRecord | undefined; 'border-width-025'?: UnknownRecord | undefined; 'border-width-050'?: UnknownRecord | undefined; 'border-width-0125'?: UnknownRecord | undefined; 'color-ai-fill-stop-01'?: UnknownRecord | undefined; 'color-ai-fill-stop-02'?: UnknownRecord | undefined; 'color-ai-fill-surface'?: UnknownRecord | undefined; 'color-ai-ring-fade'?: UnknownRecord | undefined; 'color-ai-ring-gap'?: UnknownRecord | undefined; 'color-ai-ring-stop-01'?: UnknownRecord | undefined; 'color-ai-ring-stop-02'?: UnknownRecord | undefined; 'color-ai-ring-stop-03'?: UnknownRecord | undefined; 'color-background-default'?: UnknownRecord | undefined; 'color-banner-caution-background'?: UnknownRecord | undefined; 'color-banner-caution-border'?: UnknownRecord | undefined; 'color-banner-default-background'?: UnknownRecord | undefined; 'color-banner-default-border'?: UnknownRecord | undefined; 'color-banner-error-background'?: UnknownRecord | undefined; 'color-banner-error-border'?: UnknownRecord | undefined; 'color-banner-feature-background'?: UnknownRecord | undefined; 'color-banner-feature-border'?: UnknownRecord | undefined; 'color-banner-information-background'?: UnknownRecord | undefined; 'color-banner-information-border'?: UnknownRecord | undefined; 'color-banner-success-background'?: UnknownRecord | undefined; 'color-banner-success-border'?: UnknownRecord | undefined; 'color-banner-warning-background'?: UnknownRecord | undefined; 'color-border-accent'?: UnknownRecord | undefined; 'color-border-accent-disabled'?: UnknownRecord | undefined; 'color-border-accent-hover'?: UnknownRecord | undefined; 'color-border-accent-minimal'?: UnknownRecord | undefined; 'color-border-accent-subtle'?: UnknownRecord | undefined; 'color-border-accent-subtle-hover'?: UnknownRecord | undefined; 'color-border-active'?: UnknownRecord | undefined; 'color-border-active-hover'?: UnknownRecord | undefined; 'color-border-base'?: UnknownRecord | undefined; 'color-border-base-hover'?: UnknownRecord | undefined; 'color-border-bold'?: UnknownRecord | undefined; 'color-border-bold-hover'?: UnknownRecord | undefined; 'color-border-caution'?: UnknownRecord | undefined; 'color-border-caution-disabled'?: UnknownRecord | undefined; 'color-border-caution-hover'?: UnknownRecord | undefined; 'color-border-caution-minimal'?: UnknownRecord | undefined; 'color-border-caution-subtle'?: UnknownRecord | undefined; 'color-border-caution-subtle-hover'?: UnknownRecord | undefined; 'color-border-critical'?: UnknownRecord | undefined; 'color-border-critical-disabled'?: UnknownRecord | undefined; 'color-border-critical-hover'?: UnknownRecord | undefined; 'color-border-critical-minimal'?: UnknownRecord | undefined; 'color-border-critical-subtle'?: UnknownRecord | undefined; 'color-border-critical-subtle-hover'?: UnknownRecord | undefined; 'color-border-dropdown'?: UnknownRecord | undefined; 'color-border-feature-border-information'?: UnknownRecord | undefined; 'color-border-feature-border-information-disabled'?: UnknownRecord | undefined; 'color-border-feature-border-information-hover'?: UnknownRecord | undefined; 'color-border-feature-border-information-minimal'?: UnknownRecord | undefined; 'color-border-feature-border-information-subtle'?: UnknownRecord | undefined; 'color-border-feature-border-information-subtle-hover'?: UnknownRecord | undefined; 'color-border-focus'?: UnknownRecord | undefined; 'color-border-information'?: UnknownRecord | undefined; 'color-border-information-disabled'?: UnknownRecord | undefined; 'color-border-information-hover'?: UnknownRecord | undefined; 'color-border-information-minimal'?: UnknownRecord | undefined; 'color-border-information-subtle'?: UnknownRecord | undefined; 'color-border-information-subtle-hover'?: UnknownRecord | undefined; 'color-border-invert'?: UnknownRecord | undefined; 'color-border-minimal'?: UnknownRecord | undefined; 'color-border-minimal-hover'?: UnknownRecord | undefined; 'color-border-success'?: UnknownRecord | undefined; 'color-border-success-disabled'?: UnknownRecord | undefined; 'color-border-success-hover'?: UnknownRecord | undefined; 'color-border-success-minimal'?: UnknownRecord | undefined; 'color-border-success-subtle'?: UnknownRecord | undefined; 'color-border-success-subtle-hover'?: UnknownRecord | undefined; 'color-button-surface-invert'?: UnknownRecord | undefined; 'color-button-surface-invert-hover'?: UnknownRecord | undefined; 'color-chart-base-1'?: UnknownRecord | undefined; 'color-chart-base-2'?: UnknownRecord | undefined; 'color-chart-base-3'?: UnknownRecord | undefined; 'color-chart-base-4'?: UnknownRecord | undefined; 'color-chart-positive-1'?: UnknownRecord | undefined; 'color-chart-positive-2'?: UnknownRecord | undefined; 'color-chart-positive-3'?: UnknownRecord | undefined; 'color-chart-positive-4'?: UnknownRecord | undefined; 'color-chart-secondary-1'?: UnknownRecord | undefined; 'color-chart-secondary-2'?: UnknownRecord | undefined; 'color-chart-secondary-3'?: UnknownRecord | undefined; 'color-chart-secondary-4'?: UnknownRecord | undefined; 'color-date_picker-background'?: UnknownRecord | undefined; 'color-date_picker-background-hover'?: UnknownRecord | undefined; 'color-date_picker-background-selected'?: UnknownRecord | undefined; 'color-icon-accent'?: UnknownRecord | undefined; 'color-icon-accent-disabled'?: UnknownRecord | undefined; 'color-icon-accent-hover'?: UnknownRecord | undefined; 'color-icon-accent-invert-disabled'?: UnknownRecord | undefined; 'color-icon-base'?: UnknownRecord | undefined; 'color-icon-base-disabled'?: UnknownRecord | undefined; 'color-icon-base-hover'?: UnknownRecord | undefined; 'color-icon-bold'?: UnknownRecord | undefined; 'color-icon-button'?: UnknownRecord | undefined; 'color-icon-caution'?: UnknownRecord | undefined; 'color-icon-caution-disabled'?: UnknownRecord | undefined; 'color-icon-critical'?: UnknownRecord | undefined; 'color-icon-critical-disabled'?: UnknownRecord | undefined; 'color-icon-critical-hover'?: UnknownRecord | undefined; 'color-icon-critical-invert-disabled'?: UnknownRecord | undefined; 'color-icon-feature'?: UnknownRecord | undefined; 'color-icon-feature-disabled'?: UnknownRecord | undefined; 'color-icon-information'?: UnknownRecord | undefined; 'color-icon-information-disabled'?: UnknownRecord | undefined; 'color-icon-invert'?: UnknownRecord | undefined; 'color-icon-minimal'?: UnknownRecord | undefined; 'color-icon-navigation'?: UnknownRecord | undefined; 'color-icon-subtle'?: UnknownRecord | undefined; 'color-icon-success'?: UnknownRecord | undefined; 'color-icon-success-disabled'?: UnknownRecord | undefined; 'color-icon-white'?: UnknownRecord | undefined; 'color-label-blue-background'?: UnknownRecord | undefined; 'color-label-blue-icon'?: UnknownRecord | undefined; 'color-label-blue-text'?: UnknownRecord | undefined; 'color-label-clementine-background'?: UnknownRecord | undefined; 'color-label-clementine-icon'?: UnknownRecord | undefined; 'color-label-clementine-text'?: UnknownRecord | undefined; 'color-label-green-background'?: UnknownRecord | undefined; 'color-label-green-icon'?: UnknownRecord | undefined; 'color-label-green-text'?: UnknownRecord | undefined; 'color-label-grey-background'?: UnknownRecord | undefined; 'color-label-grey-icon'?: UnknownRecord | undefined; 'color-label-grey-text'?: UnknownRecord | undefined; 'color-label-plum-background'?: UnknownRecord | undefined; 'color-label-plum-icon'?: UnknownRecord | undefined; 'color-label-plum-text'?: UnknownRecord | undefined; 'color-label-purple-background'?: UnknownRecord | undefined; 'color-label-purple-icon'?: UnknownRecord | undefined; 'color-label-purple-text'?: UnknownRecord | undefined; 'color-label-raspberry-background'?: UnknownRecord | undefined; 'color-label-raspberry-icon'?: UnknownRecord | undefined; 'color-label-raspberry-text'?: UnknownRecord | undefined; 'color-label-red-background'?: UnknownRecord | undefined; 'color-label-red-icon'?: UnknownRecord | undefined; 'color-label-red-text'?: UnknownRecord | undefined; 'color-label-teal-background'?: UnknownRecord | undefined; 'color-label-teal-icon'?: UnknownRecord | undefined; 'color-label-teal-text'?: UnknownRecord | undefined; 'color-label-yellow-background'?: UnknownRecord | undefined; 'color-label-yellow-icon'?: UnknownRecord | undefined; 'color-label-yellow-text'?: UnknownRecord | undefined; 'color-navigation-background'?: UnknownRecord | undefined; 'color-navigation-background-hover'?: UnknownRecord | undefined; 'color-navigation-background-selected'?: UnknownRecord | undefined; 'color-navigation-icon'?: UnknownRecord | undefined; 'color-navigation-icon-collapsed'?: UnknownRecord | undefined; 'color-navigation-icon-selected'?: UnknownRecord | undefined; 'color-navigation-text'?: UnknownRecord | undefined; 'color-navigation-text-selected'?: UnknownRecord | undefined; 'color-snackbar-default-background'?: UnknownRecord | undefined; 'color-snackbar-default-close-background-hover'?: UnknownRecord | undefined; 'color-snackbar-error-background'?: UnknownRecord | undefined; 'color-snackbar-error-close-background-hover'?: UnknownRecord | undefined; 'color-snackbar-success-background'?: UnknownRecord | undefined; 'color-snackbar-success-close-background-hover'?: UnknownRecord | undefined; 'color-status-blue'?: UnknownRecord | undefined; 'color-status-green'?: UnknownRecord | undefined; 'color-status-purple'?: UnknownRecord | undefined; 'color-status-red'?: UnknownRecord | undefined; 'color-status-yellow'?: UnknownRecord | undefined; 'color-surface-accent'?: UnknownRecord | undefined; 'color-surface-accent-disabled'?: UnknownRecord | undefined; 'color-surface-accent-hover'?: UnknownRecord | undefined; 'color-surface-accent-minimal'?: UnknownRecord | undefined; 'color-surface-accent-subtle'?: UnknownRecord | undefined; 'color-surface-active'?: UnknownRecord | undefined; 'color-surface-active-disabled'?: UnknownRecord | undefined; 'color-surface-active-hover'?: UnknownRecord | undefined; 'color-surface-base'?: UnknownRecord | undefined; 'color-surface-base-disabled'?: UnknownRecord | undefined; 'color-surface-base-hover'?: UnknownRecord | undefined; 'color-surface-bold'?: UnknownRecord | undefined; 'color-surface-bold-hover'?: UnknownRecord | undefined; 'color-surface-caution'?: UnknownRecord | undefined; 'color-surface-caution-bold'?: UnknownRecord | undefined; 'color-surface-caution-disabled'?: UnknownRecord | undefined; 'color-surface-caution-hover'?: UnknownRecord | undefined; 'color-surface-caution-minimal'?: UnknownRecord | undefined; 'color-surface-caution-subtle'?: UnknownRecord | undefined; 'color-surface-caution-subtle-hover'?: UnknownRecord | undefined; 'color-surface-critical'?: UnknownRecord | undefined; 'color-surface-critical-bold'?: UnknownRecord | undefined; 'color-surface-critical-disabled'?: UnknownRecord | undefined; 'color-surface-critical-hover'?: UnknownRecord | undefined; 'color-surface-critical-minimal'?: UnknownRecord | undefined; 'color-surface-critical-subtle'?: UnknownRecord | undefined; 'color-surface-critical-subtle-hover'?: UnknownRecord | undefined; 'color-surface-information'?: UnknownRecord | undefined; 'color-surface-information-bold'?: UnknownRecord | undefined; 'color-surface-information-disabled'?: UnknownRecord | undefined; 'color-surface-information-hover'?: UnknownRecord | undefined; 'color-surface-information-minimal'?: UnknownRecord | undefined; 'color-surface-information-subtle'?: UnknownRecord | undefined; 'color-surface-information-subtle-hover'?: UnknownRecord | undefined; 'color-surface-invert'?: UnknownRecord | undefined; 'color-surface-invert-bold'?: UnknownRecord | undefined; 'color-surface-invert-bold-hover'?: UnknownRecord | undefined; 'color-surface-invert-hover'?: UnknownRecord | undefined; 'color-surface-invert-subtle'?: UnknownRecord | undefined; 'color-surface-subtle'?: UnknownRecord | undefined; 'color-surface-subtle-disabled'?: UnknownRecord | undefined; 'color-surface-subtle-hover'?: UnknownRecord | undefined; 'color-surface-success'?: UnknownRecord | undefined; 'color-surface-success-bold'?: UnknownRecord | undefined; 'color-surface-success-disabled'?: UnknownRecord | undefined; 'color-surface-success-hover'?: UnknownRecord | undefined; 'color-surface-success-minimal'?: UnknownRecord | undefined; 'color-surface-success-subtle'?: UnknownRecord | undefined; 'color-surface-success-subtle-hover'?: UnknownRecord | undefined; 'color-surface-workflow-data'?: UnknownRecord | undefined; 'color-surface-workflow-delays'?: UnknownRecord | undefined; 'color-surface-workflow-flowcontrol'?: UnknownRecord | undefined; 'color-surface-workflow-messages'?: UnknownRecord | undefined; 'color-text-accent'?: UnknownRecord | undefined; 'color-text-accent-bold'?: UnknownRecord | undefined; 'color-text-accent-disabled'?: UnknownRecord | undefined; 'color-text-accent-hover'?: UnknownRecord | undefined; 'color-text-accent-invert-disabled'?: UnknownRecord | undefined; 'color-text-active'?: UnknownRecord | undefined; 'color-text-base'?: UnknownRecord | undefined; 'color-text-base-disabled'?: UnknownRecord | undefined; 'color-text-base-hover'?: UnknownRecord | undefined; 'color-text-bold'?: UnknownRecord | undefined; 'color-text-bold-hover'?: UnknownRecord | undefined; 'color-text-caution'?: UnknownRecord | undefined; 'color-text-caution-bold'?: UnknownRecord | undefined; 'color-text-caution-disabled'?: UnknownRecord | undefined; 'color-text-caution-hover'?: UnknownRecord | undefined; 'color-text-caution-subtle'?: UnknownRecord | undefined; 'color-text-code'?: UnknownRecord | undefined; 'color-text-critical'?: UnknownRecord | undefined; 'color-text-critical-bold'?: UnknownRecord | undefined; 'color-text-critical-disabled'?: UnknownRecord | undefined; 'color-text-critical-hover'?: UnknownRecord | undefined; 'color-text-critical-invert-disabled'?: UnknownRecord | undefined; 'color-text-critical-subtle'?: UnknownRecord | undefined; 'color-text-information'?: UnknownRecord | undefined; 'color-text-information-bold'?: UnknownRecord | undefined; 'color-text-information-disabled'?: UnknownRecord | undefined; 'color-text-information-hover'?: UnknownRecord | undefined; 'color-text-information-subtle'?: UnknownRecord | undefined; 'color-text-invert'?: UnknownRecord | undefined; 'color-text-minimal'?: UnknownRecord | undefined; 'color-text-placeholder'?: UnknownRecord | undefined; 'color-text-subtle'?: UnknownRecord | undefined; 'color-text-success'?: UnknownRecord | undefined; 'color-text-success-bold'?: UnknownRecord | undefined; 'color-text-success-disabled'?: UnknownRecord | undefined; 'color-text-success-hover'?: UnknownRecord | undefined; 'color-text-success-subtle'?: UnknownRecord | undefined; 'color-text-white'?: UnknownRecord | undefined; 'color-toggle-surface-active'?: UnknownRecord | undefined; 'color-toggle-surface-active-disabled'?: UnknownRecord | undefined; 'color-toggle-surface-active-hover'?: UnknownRecord | undefined; 'color-toggle-surface-base'?: UnknownRecord | undefined; 'color-toggle-surface-base-disabled'?: UnknownRecord | undefined; 'color-toggle-surface-base-hover'?: UnknownRecord | undefined; 'depth-inset'?: UnknownRecord | undefined; 'depth-onset'?: UnknownRecord | undefined; 'depth-surface-1'?: UnknownRecord | undefined; 'depth-surface-2'?: UnknownRecord | undefined; 'depth-surface-3'?: UnknownRecord | undefined; focus?: UnknownRecord | undefined; 'font-family-mono'?: UnknownRecord | undefined; 'font-family-sans'?: UnknownRecord | undefined; 'font-size-button'?: UnknownRecord | undefined; 'font-size-l'?: UnknownRecord | undefined; 'font-size-m'?: UnknownRecord | undefined; 'font-size-s'?: UnknownRecord | undefined; 'font-size-xl'?: UnknownRecord | undefined; 'font-size-xs'?: UnknownRecord | undefined; 'font-size-xxl'?: UnknownRecord | undefined; 'font-size-xxs'?: UnknownRecord | undefined; 'font-size-xxxl'?: UnknownRecord | undefined; 'font-weight-bold'?: UnknownRecord | undefined; 'font-weight-heavy'?: UnknownRecord | undefined; 'font-weight-light'?: UnknownRecord | undefined; 'font-weight-medium'?: UnknownRecord | undefined; 'font-weight-regular'?: UnknownRecord | undefined; 'font-weight-semibold'?: UnknownRecord | undefined; 'motion-duration-fast-01'?: UnknownRecord | undefined; 'motion-duration-fast-02'?: UnknownRecord | undefined; 'motion-duration-moderate-01'?: UnknownRecord | undefined; 'motion-duration-moderate-02'?: UnknownRecord | undefined; 'motion-duration-slow-01'?: UnknownRecord | undefined; 'motion-duration-slow-02'?: UnknownRecord | undefined; 'motion-easing-entrance-expressive'?: UnknownRecord | undefined; 'motion-easing-entrance-productive'?: UnknownRecord | undefined; 'motion-easing-exit-expressive'?: UnknownRecord | undefined; 'motion-easing-exit-productive'?: UnknownRecord | undefined; 'motion-easing-standard-expressive'?: UnknownRecord | undefined; 'motion-easing-standard-productive'?: UnknownRecord | undefined; 'palette-blue_wave-025'?: UnknownRecord | undefined; 'palette-blue_wave-050'?: UnknownRecord | undefined; 'palette-blue_wave-100'?: UnknownRecord | undefined; 'palette-blue_wave-200'?: UnknownRecord | undefined; 'palette-blue_wave-300'?: UnknownRecord | undefined; 'palette-blue_wave-400'?: UnknownRecord | undefined; 'palette-blue_wave-500'?: UnknownRecord | undefined; 'palette-blue_wave-600'?: UnknownRecord | undefined; 'palette-blue_wave-700'?: UnknownRecord | undefined; 'palette-blue_wave-800'?: UnknownRecord | undefined; 'palette-blue_wave-900'?: UnknownRecord | undefined; 'palette-blue-050'?: UnknownRecord | undefined; 'palette-blue-100'?: UnknownRecord | undefined; 'palette-blue-200'?: UnknownRecord | undefined; 'palette-blue-300'?: UnknownRecord | undefined; 'palette-blue-400'?: UnknownRecord | undefined; 'palette-blue-500'?: UnknownRecord | undefined; 'palette-blue-600'?: UnknownRecord | undefined; 'palette-blue-700'?: UnknownRecord | undefined; 'palette-blue-800'?: UnknownRecord | undefined; 'palette-blue-900'?: UnknownRecord | undefined; 'palette-brand-forest'?: UnknownRecord | undefined; 'palette-brand-forest-dark'?: UnknownRecord | undefined; 'palette-brand-forest-light'?: UnknownRecord | undefined; 'palette-green_verdant-015'?: UnknownRecord | undefined; 'palette-green_verdant-025'?: UnknownRecord | undefined; 'palette-green_verdant-050'?: UnknownRecord | undefined; 'palette-green_verdant-100'?: UnknownRecord | undefined; 'palette-green_verdant-200'?: UnknownRecord | undefined; 'palette-green_verdant-300'?: UnknownRecord | undefined; 'palette-green_verdant-400'?: UnknownRecord | undefined; 'palette-green_verdant-500'?: UnknownRecord | undefined; 'palette-green_verdant-550'?: UnknownRecord | undefined; 'palette-green_verdant-600'?: UnknownRecord | undefined; 'palette-green_verdant-700'?: UnknownRecord | undefined; 'palette-green_verdant-800'?: UnknownRecord | undefined; 'palette-green_verdant-850'?: UnknownRecord | undefined; 'palette-green_verdant-900'?: UnknownRecord | undefined; 'palette-green-050'?: UnknownRecord | undefined; 'palette-green-100'?: UnknownRecord | undefined; 'palette-green-200'?: UnknownRecord | undefined; 'palette-green-300'?: UnknownRecord | undefined; 'palette-green-400'?: UnknownRecord | undefined; 'palette-green-500'?: UnknownRecord | undefined; 'palette-green-600'?: UnknownRecord | undefined; 'palette-green-700'?: UnknownRecord | undefined; 'palette-green-800'?: UnknownRecord | undefined; 'palette-green-900'?: UnknownRecord | undefined; 'palette-grey_charcoal-015'?: UnknownRecord | undefined; 'palette-grey_charcoal-025'?: UnknownRecord | undefined; 'palette-grey_charcoal-050'?: UnknownRecord | undefined; 'palette-grey_charcoal-100'?: UnknownRecord | undefined; 'palette-grey_charcoal-200'?: UnknownRecord | undefined; 'palette-grey_charcoal-250'?: UnknownRecord | undefined; 'palette-grey_charcoal-300'?: UnknownRecord | undefined; 'palette-grey_charcoal-350'?: UnknownRecord | undefined; 'palette-grey_charcoal-400'?: UnknownRecord | undefined; 'palette-grey_charcoal-500'?: UnknownRecord | undefined; 'palette-grey_charcoal-600'?: UnknownRecord | undefined; 'palette-grey_charcoal-650'?: UnknownRecord | undefined; 'palette-grey_charcoal-700'?: UnknownRecord | undefined; 'palette-grey_charcoal-750'?: UnknownRecord | undefined; 'palette-grey_charcoal-800'?: UnknownRecord | undefined; 'palette-grey_charcoal-850'?: UnknownRecord | undefined; 'palette-grey_charcoal-900'?: UnknownRecord | undefined; 'palette-grey_charcoal-black'?: UnknownRecord | undefined; 'palette-grey_charcoal-white'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-015'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-025'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-050'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-100'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-200'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-300'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-400'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-500'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-600'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-700'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-800'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-900'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-black'?: UnknownRecord | undefined; 'palette-grey_warm_charcoal-white'?: UnknownRecord | undefined; 'palette-grey-050'?: UnknownRecord | undefined; 'palette-grey-100'?: UnknownRecord | undefined; 'palette-grey-200'?: UnknownRecord | undefined; 'palette-grey-300'?: UnknownRecord | undefined; 'palette-grey-400'?: UnknownRecord | undefined; 'palette-grey-500'?: UnknownRecord | undefined; 'palette-grey-600'?: UnknownRecord | undefined; 'palette-grey-700'?: UnknownRecord | undefined; 'palette-grey-800'?: UnknownRecord | undefined; 'palette-grey-900'?: UnknownRecord | undefined; 'palette-grey-black'?: UnknownRecord | undefined; 'palette-grey-white'?: UnknownRecord | undefined; 'palette-orange_zest-025'?: UnknownRecord | undefined; 'palette-orange_zest-050'?: UnknownRecord | undefined; 'palette-orange_zest-100'?: UnknownRecord | undefined; 'palette-orange_zest-200'?: UnknownRecord | undefined; 'palette-orange_zest-300'?: UnknownRecord | undefined; 'palette-orange_zest-400'?: UnknownRecord | undefined; 'palette-orange_zest-500'?: UnknownRecord | undefined; 'palette-orange_zest-600'?: UnknownRecord | undefined; 'palette-orange_zest-700'?: UnknownRecord | undefined; 'palette-orange_zest-800'?: UnknownRecord | undefined; 'palette-orange_zest-900'?: UnknownRecord | undefined; 'palette-orange-050'?: UnknownRecord | undefined; 'palette-orange-100'?: UnknownRecord | undefined; 'palette-orange-200'?: UnknownRecord | undefined; 'palette-orange-300'?: UnknownRecord | undefined; 'palette-orange-400'?: UnknownRecord | undefined; 'palette-orange-500'?: UnknownRecord | undefined; 'palette-orange-600'?: UnknownRecord | undefined; 'palette-orange-700'?: UnknownRecord | undefined; 'palette-orange-800'?: UnknownRecord | undefined; 'palette-orange-900'?: UnknownRecord | undefined; 'palette-pink_blush-025'?: UnknownRecord | undefined; 'palette-pink_blush-050'?: UnknownRecord | undefined; 'palette-pink_blush-100'?: UnknownRecord | undefined; 'palette-pink_blush-200'?: UnknownRecord | undefined; 'palette-pink_blush-300'?: UnknownRecord | undefined; 'palette-pink_blush-400'?: UnknownRecord | undefined; 'palette-pink_blush-500'?: UnknownRecord | undefined; 'palette-pink_blush-600'?: UnknownRecord | undefined; 'palette-pink_blush-700'?: UnknownRecord | undefined; 'palette-pink_blush-800'?: UnknownRecord | undefined; 'palette-pink_blush-900'?: UnknownRecord | undefined; 'palette-plum-100'?: UnknownRecord | undefined; 'palette-plum-200'?: UnknownRecord | undefined; 'palette-plum-300'?: UnknownRecord | undefined; 'palette-plum-400'?: UnknownRecord | undefined; 'palette-plum-500'?: UnknownRecord | undefined; 'palette-plum-600'?: UnknownRecord | undefined; 'palette-plum-700'?: UnknownRecord | undefined; 'palette-plum-800'?: UnknownRecord | undefined; 'palette-plum-900'?: UnknownRecord | undefined; 'palette-plum-950'?: UnknownRecord | undefined; 'palette-purple_nova-025'?: UnknownRecord | undefined; 'palette-purple_nova-050'?: UnknownRecord | undefined; 'palette-purple_nova-100'?: UnknownRecord | undefined; 'palette-purple_nova-150'?: UnknownRecord | undefined; 'palette-purple_nova-200'?: UnknownRecord | undefined; 'palette-purple_nova-300'?: UnknownRecord | undefined; 'palette-purple_nova-400'?: UnknownRecord | undefined; 'palette-purple_nova-500'?: UnknownRecord | undefined; 'palette-purple_nova-600'?: UnknownRecord | undefined; 'palette-purple_nova-700'?: UnknownRecord | undefined; 'palette-purple_nova-750'?: UnknownRecord | undefined; 'palette-purple_nova-800'?: UnknownRecord | undefined; 'palette-purple_nova-900'?: UnknownRecord | undefined; 'palette-purple-050'?: UnknownRecord | undefined; 'palette-purple-100'?: UnknownRecord | undefined; 'palette-purple-200'?: UnknownRecord | undefined; 'palette-purple-300'?: UnknownRecord | undefined; 'palette-purple-400'?: UnknownRecord | undefined; 'palette-purple-500'?: UnknownRecord | undefined; 'palette-purple-600'?: UnknownRecord | undefined; 'palette-purple-700'?: UnknownRecord | undefined; 'palette-purple-800'?: UnknownRecord | undefined; 'palette-purple-900'?: UnknownRecord | undefined; 'palette-raspberry-050'?: UnknownRecord | undefined; 'palette-raspberry-100'?: UnknownRecord | undefined; 'palette-raspberry-200'?: UnknownRecord | undefined; 'palette-raspberry-300'?: UnknownRecord | undefined; 'palette-raspberry-400'?: UnknownRecord | undefined; 'palette-raspberry-500'?: UnknownRecord | undefined; 'palette-raspberry-600'?: UnknownRecord | undefined; 'palette-raspberry-700'?: UnknownRecord | undefined; 'palette-raspberry-800'?: UnknownRecord | undefined; 'palette-raspberry-900'?: UnknownRecord | undefined; 'palette-red_flame-025'?: UnknownRecord | undefined; 'palette-red_flame-050'?: UnknownRecord | undefined; 'palette-red_flame-100'?: UnknownRecord | undefined; 'palette-red_flame-200'?: UnknownRecord | undefined; 'palette-red_flame-300'?: UnknownRecord | undefined; 'palette-red_flame-400'?: UnknownRecord | undefined; 'palette-red_flame-500'?: UnknownRecord | undefined; 'palette-red_flame-600'?: UnknownRecord | undefined; 'palette-red_flame-700'?: UnknownRecord | undefined; 'palette-red_flame-800'?: UnknownRecord | undefined; 'palette-red_flame-900'?: UnknownRecord | undefined; 'palette-red-050'?: UnknownRecord | undefined; 'palette-red-100'?: UnknownRecord | undefined; 'palette-red-200'?: UnknownRecord | undefined; 'palette-red-300'?: UnknownRecord | undefined; 'palette-red-400'?: UnknownRecord | undefined; 'palette-red-500'?: UnknownRecord | undefined; 'palette-red-600'?: UnknownRecord | undefined; 'palette-red-700'?: UnknownRecord | undefined; 'palette-red-800'?: UnknownRecord | undefined; 'palette-red-900'?: UnknownRecord | undefined; 'palette-teal_spruce-015'?: UnknownRecord | undefined; 'palette-teal_spruce-025'?: UnknownRecord | undefined; 'palette-teal_spruce-050'?: UnknownRecord | undefined; 'palette-teal_spruce-100'?: UnknownRecord | undefined; 'palette-teal_spruce-200'?: UnknownRecord | undefined; 'palette-teal_spruce-300'?: UnknownRecord | undefined; 'palette-teal_spruce-400'?: UnknownRecord | undefined; 'palette-teal_spruce-500'?: UnknownRecord | undefined; 'palette-teal_spruce-600'?: UnknownRecord | undefined; 'palette-teal_spruce-700'?: UnknownRecord | undefined; 'palette-teal_spruce-800'?: UnknownRecord | undefined; 'palette-teal_spruce-900'?: UnknownRecord | undefined; 'palette-teal-050'?: UnknownRecord | undefined; 'palette-teal-100'?: UnknownRecord | undefined; 'palette-teal-200'?: UnknownRecord | undefined; 'palette-teal-300'?: UnknownRecord | undefined; 'palette-teal-400'?: UnknownRecord | undefined; 'palette-teal-500'?: UnknownRecord | undefined; 'palette-teal-600'?: UnknownRecord | undefined; 'palette-teal-700'?: UnknownRecord | undefined; 'palette-teal-800'?: UnknownRecord | undefined; 'palette-teal-900'?: UnknownRecord | undefined; 'palette-yellow_mustard-025'?: UnknownRecord | undefined; 'palette-yellow_mustard-050'?: UnknownRecord | undefined; 'palette-yellow_mustard-100'?: UnknownRecord | undefined; 'palette-yellow_mustard-200'?: UnknownRecord | undefined; 'palette-yellow_mustard-300'?: UnknownRecord | undefined; 'palette-yellow_mustard-400'?: UnknownRecord | undefined; 'palette-yellow_mustard-500'?: UnknownRecord | undefined; 'palette-yellow_mustard-600'?: UnknownRecord | undefined; 'palette-yellow_mustard-700'?: UnknownRecord | undefined; 'palette-yellow_mustard-800'?: UnknownRecord | undefined; 'palette-yellow_mustard-900'?: UnknownRecord | undefined; 'palette-yellow-050'?: UnknownRecord | undefined; 'palette-yellow-100'?: UnknownRecord | undefined; 'palette-yellow-200'?: UnknownRecord | undefined; 'palette-yellow-300'?: UnknownRecord | undefined; 'palette-yellow-400'?: UnknownRecord | undefined; 'palette-yellow-500'?: UnknownRecord | undefined; 'palette-yellow-600'?: UnknownRecord | undefined; 'palette-yellow-700'?: UnknownRecord | undefined; 'palette-yellow-800'?: UnknownRecord | undefined; 'palette-yellow-900'?: UnknownRecord | undefined; 'radius-2'?: UnknownRecord | undefined; 'radius-3'?: UnknownRecord | undefined; 'radius-4'?: UnknownRecord | undefined; 'radius-6'?: UnknownRecord | undefined; 'radius-8'?: UnknownRecord | undefined; 'radius-10'?: UnknownRecord | undefined; 'radius-button-medium'?: UnknownRecord | undefined; 'radius-button-small'?: UnknownRecord | undefined; 'radius-dropdown'?: UnknownRecord | undefined; 'radius-full'?: UnknownRecord | undefined; 'radius-labels'?: UnknownRecord | undefined; 'space-0'?: UnknownRecord | undefined; 'space-025'?: UnknownRecord | undefined; 'space-050'?: UnknownRecord | undefined; 'space-075'?: UnknownRecord | undefined; 'space-100'?: UnknownRecord | undefined; 'space-125'?: UnknownRecord | undefined; 'space-150'?: UnknownRecord | undefined; 'space-175'?: UnknownRecord | undefined; 'space-200'?: UnknownRecord | undefined; 'space-225'?: UnknownRecord | undefined; 'space-250'?: UnknownRecord | undefined; 'space-275'?: UnknownRecord | undefined; 'space-300'?: UnknownRecord | undefined; 'space-350'?: UnknownRecord | undefined; 'space-400'?: UnknownRecord | undefined; 'space-450'?: UnknownRecord | undefined; 'space-500'?: UnknownRecord | undefined; 'space-600'?: UnknownRecord | undefined; 'space-800'?: UnknownRecord | undefined; 'space-900'?: UnknownRecord | undefined; 'space-1000'?: UnknownRecord | undefined; 'space-1200'?: UnknownRecord | undefined; 'space-1600'?: UnknownRecord | undefined; 'space-2000'?: UnknownRecord | undefined; 'space-2400'?: UnknownRecord | undefined; 'space-2800'?: UnknownRecord | undefined; 'space-3200'?: UnknownRecord | undefined; 'space-icon-lg'?: UnknownRecord | undefined; 'space-icon-md'?: UnknownRecord | undefined; 'space-icon-sm'?: UnknownRecord | undefined; 'space-icon-v2-lg'?: UnknownRecord | undefined; 'space-icon-v2-md'?: UnknownRecord | undefined; 'space-icon-v2-sm'?: UnknownRecord | undefined; 'space-icon-v2-xl'?: UnknownRecord | undefined; 'space-icon-xl'?: UnknownRecord | undefined; 'space-icon-xs'?: UnknownRecord | undefined; 'space-icon-xxs'?: UnknownRecord | undefined; 'space-padding-button-medium'?: UnknownRecord | undefined; 'space-padding-button-small'?: UnknownRecord | undefined; 'space-padding-header'?: UnknownRecord | undefined; 'text-brand-h1'?: UnknownRecord | undefined; 'text-brand-h2'?: UnknownRecord | undefined; 'text-brand-h3'?: UnknownRecord | undefined; 'text-brand-h4'?: UnknownRecord | undefined; 'text-brand-h5'?: UnknownRecord | undefined; 'text-brand-h6'?: UnknownRecord | undefined; 'text-brand-label'?: UnknownRecord | undefined; 'text-brand-p'?: UnknownRecord | undefined; 'text-brand-p-small'?: UnknownRecord | undefined; 'text-brand-p-subheader'?: UnknownRecord | undefined; 'text-product-code'?: UnknownRecord | undefined; 'text-product-h1'?: UnknownRecord | undefined; 'text-product-h2'?: UnknownRecord | undefined; 'text-product-h3'?: UnknownRecord | undefined; 'text-product-h4'?: UnknownRecord | undefined; 'text-product-label'?: UnknownRecord | undefined; 'text-product-label-secondary'?: UnknownRecord | undefined; 'text-product-link'?: UnknownRecord | undefined; 'text-product-link-secondary'?: UnknownRecord | undefined; 'text-product-p'?: UnknownRecord | undefined; 'text-product-p-active'?: UnknownRecord | undefined; 'text-product-p-secondary'?: UnknownRecord | undefined; 'text-product-ps'?: UnknownRecord | undefined; 'text-product-ps-active'?: UnknownRecord | undefined; 'text-product-pxs'?: UnknownRecord | undefined; 'text-product-pxs-active'?: UnknownRecord | undefined; 'text-product-pxs-secondary'?: UnknownRecord | undefined; } & Record<string, UnknownRecord>; styles: DeepPartial<{ text: readonly ("brand-h1" | "brand-h2" | "brand-h3" | "brand-h4" | "brand-h5" | "brand-h6" | "brand-label" | "brand-p" | "brand-p-small" | "brand-p-subheader" | "product-code" | "product-h1" | "product-h2" | "product-h3" | "product-h4" | "product-label" | "product-label-secondary" | "product-link" | "product-link-secondary" | "product-p" | "product-p-active" | "product-p-secondary" | "product-ps" | "product-ps-active" | "product-pxs" | "product-pxs-active" | "product-pxs-secondary")[]; }> & { text?: UnknownArray | undefined; }; colorScheme: ResolvedColorScheme; className: string; version: string; } | undefined; } | undefined

The themes to apply when theme is not provided. The Provider picks themes.light or themes.dark based on the resolved colorScheme and passes it through the global theme manager (which sets the root data attributes and, when configured, applies global CSS variables).

Pass these explicitly so consumers that always provide their own theme don't pull the canonical light/dark theme CSS into their bundle. Import the canonical themes from @customerio/pluma-components/css if you want the standard light/dark behavior.

Whether to load baseline styles, which include global styles for the body element.

Whether to load global reset styles (box-sizing, font inheritance, etc.).

Whether the theme variables should be set globally on :root instead of as a class name on a div container.