import React from "react"; import type { AutoCompleteOption, OptionGroup } from "./AutoSuggest.types.js"; interface AutoSuggestProps { options: OptionGroup[]; onSelect: (option: AutoCompleteOption) => boolean; className?: string; value: string; onChange: (newValue: string) => void; open: boolean; setOpen: (open: boolean) => void; } declare const AutoSuggest: React.ForwardRefExoticComponent>; export { AutoSuggest };