import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, NgZone } from '@angular/core'; import { ValueAccessor } from '@ionic/angular/common'; import type { CheckboxChangeEventDetail, Components } from '@ionic/core/components'; import * as i0 from "@angular/core"; export declare class IonCheckbox extends ValueAccessor { protected z: NgZone; protected el: HTMLElement; constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone, injector: Injector); writeValue(value: boolean): void; handleIonChange(el: HTMLIonCheckboxElement | HTMLIonToggleElement): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare interface IonCheckbox extends Components.IonCheckbox { /** * Emitted when the checked property has changed as a result of a user action such as a click. This event will not emit when programmatically setting the checked property. */ ionChange: EventEmitter>; /** * Emitted when the checkbox has focus. */ ionFocus: EventEmitter>; /** * Emitted when the checkbox loses focus. */ ionBlur: EventEmitter>; }