import { ElementRef, OnDestroy, QueryList, AfterContentInit } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import { cn } from './utils/cn'; import { SelectItemComponent } from './select-item.component'; import { SelectService } from './select.service'; import * as i0 from "@angular/core"; export declare class SelectComponent implements ControlValueAccessor, AfterContentInit, OnDestroy { private selectService; placeholder: string; class: string; disabled: boolean; searchable: boolean; size: 'xs' | 'sm' | 'default' | 'lg'; trigger: ElementRef; popover: ElementRef; items: QueryList; private sub; searchQuery: string; noResults: boolean; isOpen: boolean; value: any; selectedLabel: string; cleanupAutoUpdate?: () => void; onChange: any; onTouched: any; protected cn: typeof cn; constructor(selectService: SelectService); get computedTriggerClass(): string; get iconClass(): string; ngAfterContentInit(): void; private updateItemSelection; toggle(): void; open(): void; close(): void; private updatePosition; onSearchChange(query: string): void; onDocumentClick(event: MouseEvent): void; writeValue(value: any): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; setDisabledState(isDisabled: boolean): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }