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