import { type PropType, type StyleValue } from 'vue'; export interface BadgeProps { rootStyle?: StyleValue; rootClass?: string; value?: number | string; max?: number; showZero?: boolean; color?: string; textColor?: string; dot?: boolean; fixed?: boolean; } export declare const badgeProps: { rootStyle: PropType; rootClass: StringConstructor; value: { type: (StringConstructor | NumberConstructor)[]; default: number; }; max: { type: NumberConstructor; default: number; }; showZero: BooleanConstructor; color: StringConstructor; textColor: StringConstructor; dot: BooleanConstructor; fixed: BooleanConstructor; }; export interface BadgeSlots { default(props: Record): any; value(props: Record): any; }