import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, NgZone } from '@angular/core'; import { ValueAccessor } from '@ionic/angular/common'; import type { SelectChangeEventDetail, Components } from '@ionic/core/components'; import * as i0 from "@angular/core"; export declare class IonSelect extends ValueAccessor { protected z: NgZone; protected el: HTMLElement; constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone, injector: Injector); handleIonChange(el: HTMLIonSelectElement): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare interface IonSelect extends Components.IonSelect { /** * Emitted when the value has changed. */ ionChange: EventEmitter>; /** * Emitted when the selection is cancelled. */ ionCancel: EventEmitter>; /** * Emitted when the overlay is dismissed. */ ionDismiss: EventEmitter>; /** * Emitted when the select has focus. */ ionFocus: EventEmitter>; /** * Emitted when the select loses focus. */ ionBlur: EventEmitter>; }