import { OnInit } from '@angular/core';
import { FormGroup, AbstractControl } from '@angular/forms';
import { Observable } from "rxjs";
import { EfDictdataService } from '../../core/service/dictdata.service';
import { MdRadioGroupField } from "./md-radio-group.field";
export declare class MdRadioGroupComponent implements OnInit {
    private efDictdataService;
    isEasyForm: boolean;
    key: string;
    label: string;
    span: number;
    offset: number;
    hidden: boolean;
    disabled: boolean;
    optionsOb: Observable<any>;
    options: any[];
    optionId: string;
    optionName: string;
    multiple: boolean;
    noneOption: boolean;
    field: MdRadioGroupField;
    form: FormGroup;
    model: any;
    controll: AbstractControl;
    dictName: string;
    constructor(efDictdataService: EfDictdataService);
    ngOnInit(): void;
    transform(value: any): any;
}
