import { AfterViewInit, ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit } from '@angular/core'; import { ReplaySubject } from "rxjs"; import { BasicUxElementComponent, BasicUxElementComponentChanges } from "../../basic-ux-element.component"; import { NgInailCommonConfig } from "../../../../ng-inail-common.config"; import * as i0 from "@angular/core"; export interface TrCheckboxComponentChanges extends BasicUxElementComponentChanges { } export declare class TrCheckboxComponent extends BasicUxElementComponent implements OnInit, OnChanges, AfterViewInit, OnDestroy { private cdr; private libConfig; label: string; title: string; value: string; hiddenLabel: boolean; disabled: boolean; initComplete: ReplaySubject; onclick: EventEmitter; onDestroy: EventEmitter; checked: boolean; constructor(cdr: ChangeDetectorRef, libConfig: NgInailCommonConfig); ngOnChanges(changes: TrCheckboxComponentChanges): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; clickHandler(): void; setChecked(b: boolean): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }