import type { Snippet } from 'svelte'; import type { HTMLAttributes } from 'svelte/elements'; import type { InfoTagSize, InfoTagVariant } from './index'; type $$ComponentProps = { label: string; value: string | number | undefined; copy_value?: string | number; title?: string; variant?: InfoTagVariant; size?: InfoTagSize; removable?: boolean; disabled?: boolean; onclick?: (event: MouseEvent) => void; onremove?: () => void; children?: Snippet<[]>; } & Omit, `onclick` | `onkeydown`>; declare const InfoTag: import("svelte").Component<$$ComponentProps, {}, "">; type InfoTag = ReturnType; export default InfoTag;