import { Observable } from 'rxjs'; import { DynamicField } from './dynamic-field'; export declare class RadioGroupField extends DynamicField { controlType?: string; options: any[] | Observable; optionValueKey?: string; optionLabelKey?: string; constructor(options: RadioGroupField); }