export declare const VIS_COLORS: string[]; export declare const colorToHexMap: { default: string; primary: string; secondary: string; accent: string; warning: string; danger: string; }; export declare const COLORS: ("default" | "primary" | "secondary" | "accent" | "warning" | "danger")[]; export declare type EuiBadgeColorType = keyof typeof colorToHexMap; export declare type ColorType = EuiBadgeColorType | string; export declare const baseClass: string; export declare function inlineStyles({ badgeColor }: { badgeColor: ColorType; }): { 'background-color': string; color: string | null; }; export declare const iconSideMapping: { left: string; right: string; }; export declare const colorMapping: { hollow: string; }; declare const mapping: ComponentMapping; export default mapping;