import { Slot } from "@vuepress/helper/client"; import { FunctionalComponent } from "vue"; //#region src/client/components/Badge.d.ts interface BadgeProps { /** * Badge type * * 徽章类型 * * @default "info" */ type?: "tip" | "warning" | "danger" | "info" | "important" | "note"; /** * Badge text * * 徽章文字 * * @default "" */ text?: string; /** * Badge vertical align * * 徽章垂直对齐方式 * * @default "top" */ vertical?: "top" | "middle" | "baseline" | "bottom"; /** * Badge background color * * 徽章背景颜色 */ bgColor?: string; /** * Badge text color * * 徽章字体颜色 */ color?: string; } declare const Badge: FunctionalComponent, { default?: Slot; }>; //#endregion export { BadgeProps, Badge as default }; //# sourceMappingURL=Badge.d.ts.map