import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { label?: string | undefined; theme?: string | undefined; icon?: string | undefined; iconRight?: string | undefined; rounded?: boolean | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { icon: {}; default: {}; iconRight: {}; }; }; export declare type TagProps = typeof __propDef.props; export declare type TagEvents = typeof __propDef.events; export declare type TagSlots = typeof __propDef.slots; export default class Tag extends SvelteComponentTyped { } export {};