import type { Snippet } from 'svelte'; type ChipVariant = 'default' | 'primary' | 'success' | 'warning' | 'error'; type ChipSize = 'sm' | 'md'; interface ChipProps { variant?: ChipVariant; size?: ChipSize; selected?: boolean; disabled?: boolean; dismissible?: boolean; class?: string; children?: Snippet; onclick?: (e: MouseEvent) => void; ondismiss?: () => void; } declare const Chip: import("svelte").Component; type Chip = ReturnType; export default Chip;