import { EventEmitter } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import { CheckboxI } from '../../../interfaces/checkbox.interface'; import * as i0 from "@angular/core"; export declare class CheckboxComponent implements ControlValueAccessor, CheckboxI { checked: boolean; isDisabled: boolean; checkboxLabel?: string; linkLabel?: string; linkUrl?: string; error?: string; name: string; showError?: boolean; check: EventEmitter; linkClick: EventEmitter; onChange: (_: boolean | undefined) => void; onTouch: () => void; checkValue(value: boolean): void; linkClicked(): void; writeValue(value: boolean): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; setDisabledState(isDisabled: boolean): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }