/*** * @file: * @author: chengyuntao * @Date: 2020-05-25 18:18:30 */ import { EventEmitter } from '@angular/core'; import { SettingsService } from '@ithinkdt/shared/browser'; import { DictionaryService } from '@ithinkdt/shared/dict'; import { ControlValueAccessorService } from '../../control-value-accessor.service'; export declare class FormRadioComponent extends ControlValueAccessorService { private settingsSrv; private dictSrv; type: any; value: any; prop: string; list: any[]; size: string; associate: any; dictCode: string; valueChange: EventEmitter; dictConf: any; constructor(settingsSrv: SettingsService, dictSrv: DictionaryService); writeValue(value: any): void; setList(code: string): void; radioChanges(): void; selectAssociate(option?: { [key: string]: any; }): void; setAssociateData(option: { [key: string]: any; }, associate: any): void; }