import { EventEmitter, OnDestroy, OnInit } from "@angular/core";
import { StiModelService } from "../../services/model.service";
import { Subscription } from "rxjs";
import * as i0 from "@angular/core";
export declare class StiAutoCompleteComponent implements OnInit, OnDestroy {
    model: StiModelService;
    value: string;
    items: any[];
    valueChange: EventEmitter<any>;
    showItemsList: boolean;
    showCompleteItemsList: boolean;
    completeItems: any[];
    isSearching: boolean;
    delay: number;
    timeout: any;
    hideSubscription: Subscription;
    constructor(model: StiModelService);
    ngOnDestroy(): void;
    blurEvent(event: any): void;
    selectItem(item: any): void;
    inputEvent(value: any): void;
    clearTimeout(): void;
    removeItem(url: any, event: any): void;
    checkUpdates(): void;
    filterItems(query: any): void;
    updateStore(): void;
    ngOnInit(): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<StiAutoCompleteComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<StiAutoCompleteComponent, "sti-autoComplete", never, { "value": { "alias": "value"; "required": false; }; "items": { "alias": "items"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
}
