import type { HtmlIngredientProps } from '../types.js';
export interface ComboboxInputProps extends HtmlIngredientProps<'input', HTMLInputElement> {
}
declare const ComboboxInput: import("svelte").Component<ComboboxInputProps, {}, "ref">;
type ComboboxInput = ReturnType<typeof ComboboxInput>;
export default ComboboxInput;
