import type { HTMLAttributes } from '../../../internal/html-attributes.js'; import type { PropsWithElement } from '../../../internal/props-with-element.js'; export interface ComboboxInputProps extends PropsWithElement<'input'>, HTMLAttributes<'input', 'children'> { } declare const Input: import("svelte").Component; type Input = ReturnType; export default Input;