export type LocaleID = 'en' | 'de' | 'fr' | 'it' | 'default'; export type LinkTarget = '_blank' | '_parent' | '_self' | '_top'; export type Alignment = 'left' | 'center' | 'right'; export type AuraButtonTypes = 'Primary-V1' | 'Secondary-V1' | 'Secondary-V4'; export type FalconButtonTypes = 'Primary-V1' | 'Secondary-V1' | 'Secondary-V4' | 'Secondary-Dark' | 'Secondary-V5'; export type QuoteBackgroundColor = 'pink' | 'blue' | 'grey' | 'iceWhite' | 'transparent'; export type FalconGradientTypes = 'rubyglow-diagonal' | 'rubyglow-vertical' | 'pinksky-diagonal' | 'pinksky-vertical' | 'bluehaze-diagonal' | 'bluehaze-vertical' | 'greencloud-diagonal' | 'greencloud-vertical' | 'peachfog-diagonal' | 'peachfog-vertical' | 'black' | 'skyfuel-vertical' | 'black-friday' | 'none'; export type ElementPosition = 'top-left' | 'top-right' | 'bottom-right' | 'bottom-left'; export type FalconColorsTypes = 'grey-600' | 'grey-500' | 'ice-white' | 'grey-100' | 'grey-400' | 'none'; export type CardDisplayVariants = 'stack' | 'slider'; export type HeadingVariants = 'h1' | 'h2' | 'h3' | 'h4'; export type ShadowVariants = 'no-shadow' | 'default-shadow'; export type FalconBackgroundColor = 'grey-100' | 'ice-white' | 'transparent' | 'blue' | 'dark-green'; export type VerticalAlignment = 'top' | 'center' | 'bottom'; export type OverlayGradient = 'overlay' | 'top-to-bottom' | 'bottom-to-top' | 'left-to-right' | 'right-to-left' | 'none'; export type FalconBackgroundColorNew = 'grey-100' | 'ice-white' | 'transparent' | 'none'; export type FalconMessageTypes = 'success' | 'error' | 'info' | 'warning' | 'tip' | 'infoWhite';