/** * Represents the tiers of palettes tokens that can be applied to Framework Components */ export declare enum DESIGN_PALETTE { auto = "auto", inverse = "inverse", inherit = "inherit", accent = "accent", dark = "dark", light = "light", alert = "alert", affirmative = "affirmative", negative = "negative" } export declare const DESIGN_PALETTE_LITERALS: { readonly auto: DESIGN_PALETTE.auto; readonly inverse: DESIGN_PALETTE.inverse; readonly inherit: DESIGN_PALETTE.inherit; readonly accent: DESIGN_PALETTE.accent; readonly dark: DESIGN_PALETTE.dark; readonly light: DESIGN_PALETTE.light; readonly alert: DESIGN_PALETTE.alert; readonly affirmative: DESIGN_PALETTE.affirmative; readonly negative: DESIGN_PALETTE.negative; }; export declare type DESIGN_PALETTE_ARGUMENT = keyof typeof DESIGN_PALETTE_LITERALS;