export type AutocompleteItemType = { id: string; pathLabel: string; itemLabel: string; items?: AutocompleteItemType[]; tags?: string[]; }; type AutocompleteItemProps = { item: AutocompleteItemType; active: boolean; substringToHighlight: string; handleOnClick: (item: AutocompleteItemType | string, e: React.MouseEvent) => void; }; declare const AutocompleteItem: ({ item, active, substringToHighlight, handleOnClick, }: AutocompleteItemProps) => import("react/jsx-runtime").JSX.Element; export default AutocompleteItem; //# sourceMappingURL=autocomplete-item.d.ts.map