/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { FocusMonitor } from '@angular/cdk/a11y'; import { AfterViewInit, ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import { Direction, Directionality } from '@angular/cdk/bidi'; import { BooleanInput, VtsSafeAny, OnChangeType, OnTouchedType } from '@ui-vts-kit/ng-vts/core/types'; import { VtsRadioButtonDirective } from './radio-button.directive'; import { VtsRadioService } from './radio.service'; import * as i0 from "@angular/core"; export declare class VtsRadioComponent implements ControlValueAccessor, AfterViewInit, OnDestroy, OnInit { private elementRef; private cdr; private focusMonitor; private directionality; private vtsRadioService; private vtsRadioButtonDirective; static ngAcceptInputType_vtsDisabled: BooleanInput; static ngAcceptInputType_vtsAutoFocus: BooleanInput; private isNgModel; private destroy$; isChecked: boolean; name: string | null; isRadioButton: boolean; onChange: OnChangeType; onTouched: OnTouchedType; inputElement?: ElementRef; vtsValue: VtsSafeAny | null; vtsDisabled: boolean; vtsAutoFocus: boolean; dir: Direction; onHostClick(event: MouseEvent): void; focus(): void; blur(): void; constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, focusMonitor: FocusMonitor, directionality: Directionality, vtsRadioService: VtsRadioService, vtsRadioButtonDirective: VtsRadioButtonDirective); setDisabledState(disabled: boolean): void; writeValue(value: boolean): void; registerOnChange(fn: OnChangeType): void; registerOnTouched(fn: OnTouchedType): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }