import { UIElement } from "../ui-element.js"; import { PropertyValues } from "@videojs/element"; //#region src/ui/radio-group/element.d.ts /** @fires value-change - Fired when the selected value changes. */ declare class RadioGroupElement extends UIElement { #private; static properties: { value: { type: StringConstructor; }; }; value: string; protected update(changed: PropertyValues): void; } //#endregion export { RadioGroupElement }; //# sourceMappingURL=element.d.ts.map