import type { InputProps } from '@zag-js/listbox';
import type { Merge } from 'type-fest';
import type { HtmlIngredientProps } from '../types.js';
export interface ListboxInputProps extends Merge<HtmlIngredientProps<'input', HTMLInputElement>, InputProps> {
}
declare const ListboxInput: import("svelte").Component<ListboxInputProps, {}, "ref">;
type ListboxInput = ReturnType<typeof ListboxInput>;
export default ListboxInput;
