/**
 * Responsibilities:
 * - Mirror the published token naming relationship between code CSS variables and Figma token names.
 * - Provide a stable translation layer for token audits and codegen checks.
 * - Keep token naming decisions out of individual component files.
 */
export declare const FIGMA_TOKEN_TO_CODE_TOKEN: {
    readonly 'UX/Brand/Brand': "--brand";
    readonly 'UX/Brand/Hover': "--brand-hover";
    readonly 'UX/Brand/Disable': "--brand-disable";
    readonly 'UX/Brand/Match,Hover': "--brand-match";
    readonly 'UX/Grey/grey-1 #FFFFFF': "--color-white";
    readonly 'UX/Grey/grey-2 #F8F8F8': "--color-grey-2";
    readonly 'UX/Grey/grey-3 #F0F0F0': "--color-grey-3";
    readonly 'UX/Grey/grey-4 #DBDBDB': "--color-grey-4";
    readonly 'UX/Grey/grey-5 #CCCCCC': "--color-grey-5";
    readonly 'UX/Grey/grey-6 #9E9E9E': "--color-grey-6";
    readonly 'UX/Grey/grey-7 #7B7B7B': "--color-grey-7";
    readonly 'UX/Grey/grey-8 #595959': "--color-grey-8";
    readonly 'UX/Grey/grey-9 #434343': "--color-grey-9";
    readonly 'UX/Grey/grey-10 #353535': "--color-grey-10";
    readonly 'UX/Grey/grey-11 #262626': "--color-grey-11";
    readonly 'UX/Grey/grey-12 #1F1F1F': "--color-grey-12";
    readonly 'UX/Grey/grey-13 #141414': "--color-grey-13";
    readonly 'UX/Grey/grey-14 #000000': "--color-grey-14";
    readonly 'UX/Red/Default': "--red";
    readonly 'UX/Red/Hover 1': "--red-hover";
    readonly 'UX/Red/Msg-bg': "--red-bg";
    readonly 'UX/Orange/Default': "--orange";
    readonly 'UX/Orange/Hover 1': "--orange-hover";
    readonly 'UX/Orange/Msg-bg': "--orange-bg";
    readonly 'UX/Orange/Time Zone': "--orange-tz";
    readonly 'UX/Blue/Default': "--blue";
    readonly 'UX/Blue/Hover 1': "--blue-hover";
    readonly 'UX/Blue/Msg-bg': "--blue-bg";
    readonly 'Color Type/Text/Heading & Button': "--text-heading";
    readonly 'Color Type/Text/Primary Button': "--text-primary-btn";
    readonly 'Color Type/Text/Text_1': "--text-body";
    readonly 'Color Type/Text/Text_2': "--text-2";
    readonly 'Color Type/Text/Tips': "--text-tips";
    readonly 'Color Type/Text/Placeholder & Button': "--text-placeholder";
    readonly 'Color Type/Text/Disable': "--text-disabled";
    readonly 'Color Type/Text/Enable Grey button': "--text-grey-en";
    readonly 'Color Type/Text/Disable Grey Button': "--text-grey-dis";
    readonly 'Color Type/Text/Hover Grey button': "--text-grey-hv";
    readonly 'Color Type/Icon/Active & Hover': "--icon-active";
    readonly 'Color Type/Icon/Default': "--icon-default";
    readonly 'Color Type/Icon/Disable': "--icon-disabled";
    readonly 'Color Type/Icon/Placeholder': "--icon-placeholder";
    readonly 'Color Type/Icon/Disable Grey Button': "--icon-grey-dis";
    readonly 'Color Type/Background/Layer_1': "--bg-layer1";
    readonly 'Color Type/Background/Layer_2': "--bg-layer2";
    readonly 'Color Type/Background/Layer_3': "--bg-layer3";
    readonly 'Color Type/Background/Layer_4': "--bg-layer4";
    readonly 'Color Type/Background/Top Bar': "--bg-topbar";
    readonly 'Color Type/Background/Hover Grey Button': "--bg-grey-btn-hv";
    readonly 'Color Type/Background/Enable Grey Button': "--bg-grey-btn-en";
    readonly 'Color Type/Background/Disable Grey Button': "--bg-grey-btn-dis";
    readonly 'Color Type/Line/Popup Border': "--line-border";
    readonly 'Color Type/Line/Deep Divider': "--line-deep";
    readonly 'Color Type/Line/Light Divider': "--line-light";
    readonly 'L1 shadow': "--shadow-l1";
    readonly 'L2 shadow': "--shadow-l2";
    readonly 'L3 shadow': "--shadow-l3";
    readonly 'Mask blur8 #000-60%': "--mask-overlay";
    readonly 'Roboto/12 tips': "--text-style-tips";
    readonly 'Roboto/14 body': "--text-style-body";
    readonly 'Roboto/16 pop title': "--text-style-pop-title";
    readonly 'Roboto/18 headline 2': "--text-style-headline-2";
    readonly 'Roboto/20 headline 1': "--text-style-headline-1";
    readonly 'Roboto/22 large title': "--text-style-large-title-22";
    readonly 'Roboto/24 large title': "--text-style-large-title-24";
    readonly 'tvu design system/spacing/xxs': "--sp-xxs";
    readonly 'tvu design system/spacing/xs': "--sp-xs";
    readonly 'tvu design system/spacing/s': "--sp-s";
    readonly 'tvu design system/spacing/m': "--sp-m";
    readonly 'tvu design system/spacing/l': "--sp-l";
    readonly 'tvu design system/spacing/xl': "--sp-xl";
    readonly 'tvu design system/spacing/xxl': "--sp-xxl";
    readonly 'tvu design system/spacing/xxxl': "--sp-xxxl";
    readonly 'tvu design system/radius/xs': "--r-xs";
    readonly 'tvu design system/radius/s': "--r-s";
    readonly 'tvu design system/radius/m': "--r-m";
    readonly 'tvu design system/radius/l': "--r-l";
    readonly 'tvu design system/radius/xl': "--r-xl";
    readonly 'tvu design system/radius/xxl': "--r-xxl";
};
export declare const CODE_TOKEN_TO_FIGMA_TOKEN: {
    readonly '--brand': "UX/Brand/Brand";
    readonly '--brand-hover': "UX/Brand/Hover";
    readonly '--brand-disable': "UX/Brand/Disable";
    readonly '--brand-match': "UX/Brand/Match,Hover";
    readonly '--color-white': "UX/Grey/grey-1 #FFFFFF";
    readonly '--color-grey-2': "UX/Grey/grey-2 #F8F8F8";
    readonly '--color-grey-3': "UX/Grey/grey-3 #F0F0F0";
    readonly '--color-grey-4': "UX/Grey/grey-4 #DBDBDB";
    readonly '--color-grey-5': "UX/Grey/grey-5 #CCCCCC";
    readonly '--color-grey-6': "UX/Grey/grey-6 #9E9E9E";
    readonly '--color-grey-7': "UX/Grey/grey-7 #7B7B7B";
    readonly '--color-grey-8': "UX/Grey/grey-8 #595959";
    readonly '--color-grey-9': "UX/Grey/grey-9 #434343";
    readonly '--color-grey-10': "UX/Grey/grey-10 #353535";
    readonly '--color-grey-11': "UX/Grey/grey-11 #262626";
    readonly '--color-grey-12': "UX/Grey/grey-12 #1F1F1F";
    readonly '--color-grey-13': "UX/Grey/grey-13 #141414";
    readonly '--color-grey-14': "UX/Grey/grey-14 #000000";
    readonly '--red': "UX/Red/Default";
    readonly '--red-hover': "UX/Red/Hover 1";
    readonly '--red-bg': "UX/Red/Msg-bg";
    readonly '--orange': "UX/Orange/Default";
    readonly '--orange-hover': "UX/Orange/Hover 1";
    readonly '--orange-bg': "UX/Orange/Msg-bg";
    readonly '--orange-tz': "UX/Orange/Time Zone";
    readonly '--blue': "UX/Blue/Default";
    readonly '--blue-hover': "UX/Blue/Hover 1";
    readonly '--blue-bg': "UX/Blue/Msg-bg";
    readonly '--text-heading': "Color Type/Text/Heading & Button";
    readonly '--text-primary-btn': "Color Type/Text/Primary Button";
    readonly '--text-body': "Color Type/Text/Text_1";
    readonly '--text-2': "Color Type/Text/Text_2";
    readonly '--text-tips': "Color Type/Text/Tips";
    readonly '--text-placeholder': "Color Type/Text/Placeholder & Button";
    readonly '--text-disabled': "Color Type/Text/Disable";
    readonly '--text-grey-en': "Color Type/Text/Enable Grey button";
    readonly '--text-grey-dis': "Color Type/Text/Disable Grey Button";
    readonly '--text-grey-hv': "Color Type/Text/Hover Grey button";
    readonly '--icon-active': "Color Type/Icon/Active & Hover";
    readonly '--icon-default': "Color Type/Icon/Default";
    readonly '--icon-disabled': "Color Type/Icon/Disable";
    readonly '--icon-placeholder': "Color Type/Icon/Placeholder";
    readonly '--icon-grey-dis': "Color Type/Icon/Disable Grey Button";
    readonly '--bg-layer1': "Color Type/Background/Layer_1";
    readonly '--bg-layer2': "Color Type/Background/Layer_2";
    readonly '--bg-layer3': "Color Type/Background/Layer_3";
    readonly '--bg-layer4': "Color Type/Background/Layer_4";
    readonly '--bg-topbar': "Color Type/Background/Top Bar";
    readonly '--bg-grey-btn-hv': "Color Type/Background/Hover Grey Button";
    readonly '--bg-grey-btn-en': "Color Type/Background/Enable Grey Button";
    readonly '--bg-grey-btn-dis': "Color Type/Background/Disable Grey Button";
    readonly '--line-border': "Color Type/Line/Popup Border";
    readonly '--line-deep': "Color Type/Line/Deep Divider";
    readonly '--line-light': "Color Type/Line/Light Divider";
    readonly '--shadow-l1': "L1 shadow";
    readonly '--shadow-l2': "L2 shadow";
    readonly '--shadow-l3': "L3 shadow";
    readonly '--mask-overlay': "Mask blur8 #000-60%";
    readonly '--text-style-tips': "Roboto/12 tips";
    readonly '--text-style-body': "Roboto/14 body";
    readonly '--text-style-pop-title': "Roboto/16 pop title";
    readonly '--text-style-headline-2': "Roboto/18 headline 2";
    readonly '--text-style-headline-1': "Roboto/20 headline 1";
    readonly '--text-style-large-title-22': "Roboto/22 large title";
    readonly '--text-style-large-title-24': "Roboto/24 large title";
    readonly '--sp-xxs': "tvu design system/spacing/xxs";
    readonly '--sp-xs': "tvu design system/spacing/xs";
    readonly '--sp-s': "tvu design system/spacing/s";
    readonly '--sp-m': "tvu design system/spacing/m";
    readonly '--sp-l': "tvu design system/spacing/l";
    readonly '--sp-xl': "tvu design system/spacing/xl";
    readonly '--sp-xxl': "tvu design system/spacing/xxl";
    readonly '--sp-xxxl': "tvu design system/spacing/xxxl";
    readonly '--r-xs': "tvu design system/radius/xs";
    readonly '--r-s': "tvu design system/radius/s";
    readonly '--r-m': "tvu design system/radius/m";
    readonly '--r-l': "tvu design system/radius/l";
    readonly '--r-xl': "tvu design system/radius/xl";
    readonly '--r-xxl': "tvu design system/radius/xxl";
};
/**
 * SEMANTIC_TO_PRIMITIVE_EQUIVALENCE
 *
 * Registers the current L2 semantic token equivalence to L1 primitive tokens
 * for each theme scope. Audit uses this as evidence to separate exact matches,
 * theme-asymmetric aliases, and true non-equivalent token drift.
 *
 * Source of truth remains src/tokens/variables.css. The component attributes
 * audit validates this table against the resolved CSS values at startup.
 */
export declare const SEMANTIC_TO_PRIMITIVE_EQUIVALENCE: Record<string, {
    dark: string | null;
    light: string | null;
}>;
