import type { PropType } from 'vue'; export declare const badgeProps: { value: { type: (StringConstructor | NumberConstructor)[]; }; effect: { type: PropType<"dark" | "light">; default: string; }; type: { type: PropType<"strong" | "primary" | "success" | "warning" | "danger">; default: string; }; isDot: BooleanConstructor; max: { type: NumberConstructor; default: number; }; hidden: BooleanConstructor; };