import { type ComponentType } from '../../model/ComponentType'; import { type TextColor } from '../../ui-kit/Text/TextProps'; declare const colorStyle: Record; export interface BadgeProps extends ComponentType { color?: keyof typeof colorStyle; } export declare const Badge: import("@redneckz/uni-jsx").UNIComponent; export {};