import { EventEmitter } from '../../stencil-public-runtime'; import { GritEventData, GritRadioEventData } from '../../common/interfaces/event'; export declare class GritRadioGroup { private elements; host: HTMLGritWcRadioGroupElement; /** Sets the group of radios to disabled. */ disabled: boolean; /** Sets the initial radio selected when the radio group renders. */ value: string; setCheckedRadio(value: string): void; setDisabledRadio(value: boolean): void; /** * Event bubbling from radio input to handle the change in a radio btn. * Can be consumed with `onChange={(event) => }` in the grit-wc-radio-group html element * The event returns * @returns { * event: "grit-update" * value: { * checked: boolean * name: string * value: string * } * } */ gritUpdate: EventEmitter>; componentDidLoad(): void; private getRadioElements; render(): any; }