import '@oicl/openbridge-webcomponents/dist/components/tag/tag.js'; import type { TagColor } from '@oicl/openbridge-webcomponents/dist/components/tag/tag.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; label?: string; color?: TagColor; hasIcon?: boolean; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcTag: import("svelte").Component<$$ComponentProps, { TagColor: typeof TagColor; }, "">; type ObcTag = ReturnType; export default ObcTag;