import type { AppConfig } from '@nuxt/schema'; import theme from '#build/ui/badge'; import type { UseComponentIconsProps } from '../composables/useComponentIcons'; import type { ComponentConfig } from '../types/utils'; type Badge = ComponentConfig; export interface BadgeProps extends Omit { /** * The element or component this component should render as. * @defaultValue 'span' */ as?: any; label?: string | number; /** * @defaultValue 'primary' */ color?: Badge['variants']['color']; /** * @defaultValue 'solid' */ variant?: Badge['variants']['variant']; /** * @defaultValue 'md' */ size?: Badge['variants']['size']; /** Render the badge with equal padding on all sides. */ square?: boolean; class?: any; ui?: Badge['slots']; } export interface BadgeSlots { leading(props?: {}): any; default(props?: {}): any; trailing(props?: {}): any; } declare const _default: __VLS_WithSlots & Readonly<{}>, { as: any; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, BadgeSlots>; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };