import type { ExtractPropTypes } from 'vue'; import type Badge from './badge.vue'; export declare const badgeProps: { value: { type: (StringConstructor | NumberConstructor)[]; default: string; }; max: { type: NumberConstructor; default: number; }; isDot: BooleanConstructor; hidden: BooleanConstructor; type: { type: PropType<"primary" | "success" | "warning" | "info" | "danger">; default: string; }; }; export type BadgeProps = ExtractPropTypes; export type BadgeInstance = InstanceType;