import { EventEmitter, OnInit } from '@angular/core';
import { ChangeWrapper } from '../../model/changeWrapper';
import { ChangeService } from '../../services/change.service';
import { I18nService } from '../../i18n.service';
import { DataService } from '../../services/data.service';
import { Subscription } from 'rxjs';
import * as i0 from "@angular/core";
export declare class CustomRadioComponent implements OnInit {
    private changeService;
    private dataService;
    i18nService: I18nService;
    options: any[];
    apiMeta: string;
    selectedValue: string;
    progressBar: boolean;
    id: string;
    readOnly: boolean;
    errorMessage: string;
    error: any;
    fromShengel: boolean;
    referenceField: string;
    token: string;
    valueChange: EventEmitter<ChangeWrapper>;
    invalidFieldIds: string[];
    labelField: string;
    valueField: string;
    subscription: Subscription;
    constructor(changeService: ChangeService, dataService: DataService, i18nService: I18nService);
    ngOnInit(): void;
    radioChange(event: any): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<CustomRadioComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<CustomRadioComponent, "app-custom-radio", never, { "options": { "alias": "options"; "required": false; }; "apiMeta": { "alias": "apiMeta"; "required": false; }; "selectedValue": { "alias": "selectedValue"; "required": false; }; "progressBar": { "alias": "progressBar"; "required": false; }; "id": { "alias": "id"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "error": { "alias": "error"; "required": false; }; "fromShengel": { "alias": "fromShengel"; "required": false; }; "referenceField": { "alias": "referenceField"; "required": false; }; "token": { "alias": "token"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
}
