import * as React from 'react'; import { d as ActionTree, A as ActionId } from '../types-KA65ZTMd.js'; declare const KBAR_LISTBOX = "kbar-listbox"; declare const getListboxItemId: (id: number) => string; interface InputProps { value: string; actions: ActionTree; onValueChange: (value: string) => void; onCurrentRootActionIdChange: (id: ActionId | null) => void; currentRootActionId: ActionId | null; defaultPlaceholder?: string; inputRefSetter?: (ref: HTMLInputElement) => void; } declare const Input: ({ defaultPlaceholder, value, onValueChange, inputRefSetter, onCurrentRootActionIdChange, currentRootActionId, actions }: InputProps) => React.JSX.Element; export { Input, KBAR_LISTBOX, getListboxItemId };