import { Component, PropType } from 'vue'; import { AsTag } from '../../primitive'; import { BadgeVariantProps } from './badge.themes'; export declare const badgeProps: { as: { type: PropType; default: string; }; variant: { type: PropType; default: string; }; color: { type: PropType; default: string; }; size: { type: PropType; }; placement: { type: PropType; }; shape: { type: PropType; }; isInvisible: { type: PropType; }; isDot: { type: PropType; }; showOutline: { type: PropType; }; };