import type { JSX } from 'solid-js'; import type { HeadlessPropsWithRef, ValidConstructor } from '../../utils/dynamic-prop'; export type ComboboxInputProps = HeadlessPropsWithRef; /** * The text field of a `Combobox`. Typing sets the query, which is debounced by * 250ms, and the arrow keys move the active option through `aria- * activedescendant` while focus stays in the input. * * Renders an `` by default. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/combobox.md} */ export declare function ComboboxInput(props: ComboboxInputProps): JSX.Element; //# sourceMappingURL=ComboboxInput.d.ts.map