import { EventEmitter } from '@angular/core'; import { SelectOption, FieldChangeDto } from '../index'; import { FormControl } from '@angular/forms'; import { ValidatorService, EasyFormComponent } from '../services/validation.service'; export declare class EasyRadioButtonComponent extends EasyFormComponent { fieldValueChange: EventEmitter; placeholder: string; selectedValue: any; key: string; items: Array>; formControl: FormControl; constructor(validatorService: ValidatorService); onChange(): void; }