import { EventEmitter } from '../../stencil-public-runtime'; import { GritAutocompleteItemData } from '../..'; export declare class GritAutocompleteItem { host: HTMLGritWcAutocompleteItemElement; /** Value of the autocomplete option/item. */ value: string | string[]; /** * Variable used to re render the option * with bold text. */ filteredValue: string; displayValue: string; /** Event fired when an item is selected with the selected value. */ itemSelected: EventEmitter; filteredValueHandler(newValue: string): void; componentDidLoad(): void; onMouseDown(): void; private innerHTML; private selectItem; render(): any; }