import { type Dispatch, type SetStateAction } from "react"; export declare function useComboControls(setActiveChip: Dispatch>, isMulti: boolean): { onClick: () => void; onFocus: () => void; onBlur: (e: import("react").FocusEvent) => void; value: string; onChange: (ev: import("react").ChangeEvent) => void; onKeyDown: (e: import("react").KeyboardEvent) => void; };