import { OnInit, ViewContainerRef } from '@angular/core'; import { Field } from '../../../core/field/abstract'; export declare class CheckRadioComponent extends Field implements OnInit { private readonly viewRef; readonly id: string; readonly name: string; readonly label: string; readonly isRtl: boolean; readonly isDisabled: boolean; readonly clazz: string; readonly type: 'radio' | 'checkbox'; constructor(viewRef: ViewContainerRef); ngOnInit(): void; onChange(): void; }