import { ComponentInterface, EventEmitter } from '../../stencil-public-runtime'; import { RadioGroupChangeEventDetail } from './radio-group-interface'; export declare class DxpRadioGroup implements ComponentInterface { private inputId; private labelId; private label?; el: HTMLDxpRadioGroupElement; /** * If `true`, the radios can be deselected. */ allowEmptySelection: boolean; /** * The name of the control, which is submitted with the form data. */ name: string; /** * the value of the radio group. */ value?: any | null; valueChanged(value: any | undefined): void; /** * Emitted when the value has changed. */ radioChange: EventEmitter; componentDidLoad(): void; private setRadioTabIndex; private getRadios; private onClick; onKeydown(ev: any): void; render(): any; }