import { SvelteComponentTyped } from "svelte"; import { scale } from 'svelte/transition'; declare const __propDef: { props: { class?: string | undefined; value?: string | undefined; active?: boolean | undefined; bordered?: boolean | undefined; dot?: boolean | undefined; tile?: boolean | undefined; blockEnd?: boolean | undefined; inlineStart?: boolean | undefined; label?: string | undefined; transition?: typeof scale | undefined; }; events: { introstart: TouchEvent | UIEvent | Event | MouseEvent | KeyboardEvent | TransitionEvent | ProgressEvent | ClipboardEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | SecurityPolicyViolationEvent | SubmitEvent | WheelEvent; outrostart: TouchEvent | UIEvent | Event | MouseEvent | KeyboardEvent | TransitionEvent | ProgressEvent | ClipboardEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | SecurityPolicyViolationEvent | SubmitEvent | WheelEvent; introend: TouchEvent | UIEvent | Event | MouseEvent | KeyboardEvent | TransitionEvent | ProgressEvent | ClipboardEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | SecurityPolicyViolationEvent | SubmitEvent | WheelEvent; outroend: TouchEvent | UIEvent | Event | MouseEvent | KeyboardEvent | TransitionEvent | ProgressEvent | ClipboardEvent | AnimationEvent | InputEvent | FocusEvent | CompositionEvent | DragEvent | ErrorEvent | FormDataEvent | PointerEvent | SecurityPolicyViolationEvent | SubmitEvent | WheelEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; badge: {}; }; }; 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 {};