import { type ComboboxLikeProps, type ComboboxLikeRenderOptionInput, type ComboboxStringData, type ComboboxStringItem } from "../Combobox"; import { type TextInputProps } from "../TextInput"; export interface AutoCompleteProps extends Omit, Omit { /** Data displayed in the dropdown */ data?: ComboboxStringData; /** Controlled component value */ value?: string; /** Uncontrolled component default value */ defaultValue?: string; /** Called when value changes */ onChange?: (val: string) => void; /** A function to render content of the option, replaces the default content of the option */ renderOption?: (input: ComboboxLikeRenderOptionInput) => React.ReactNode; } export declare function AutoComplete(props: AutoCompleteProps): import("react").JSX.Element;