import type { Snippet } from 'svelte'; interface InputGroupProps { label?: string; value?: string; placeholder?: string; prefix?: string; suffix?: string; disabled?: boolean; required?: boolean; hint?: string; type?: 'text' | 'email' | 'url' | 'number' | 'tel'; class?: string; prefixSlot?: Snippet; suffixSlot?: Snippet; oninput?: (e: Event) => void; } declare const InputGroup: import("svelte").Component; type InputGroup = ReturnType; export default InputGroup;