import { SvelteComponentTyped } from "svelte"; import type { ButtonSize } from '../common/types/ButtonSize'; import { type SemanticColor } from '../common/types/SemanticColor'; declare const __propDef: { props: { class?: string; label?: string; outlined?: boolean; rounded?: boolean; size?: Exclude; color?: SemanticColor; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type BadgeProps = typeof __propDef.props; export declare type BadgeEvents = typeof __propDef.events; export declare type BadgeSlots = typeof __propDef.slots; export default class Badge extends SvelteComponentTyped { } export {};