interface AutocompleteItem { value: string; label: string; } interface AutocompleteOptions { dropdownOptions?: Bootstrap.DropdownOption; dropdownClass?: string | string[]; highlightClass?: string | string[]; highlightTyped?: boolean; label?: string; maximumItems?: number; onSelectItem?: (item: AutocompleteItem, element: HTMLElement) => void; source?: object; treshold?: number; value?: string; } interface JQuery { autocomplete(options: AutocompleteOptions): JQuery; }