import { CustomElement } from "../../internal/custom-element.js"; import { Constructor } from "../../internal/utils/dedupe-mixin.js"; import { FormAssociated } from "../../internal/behaviors/form-associated.js"; import { PropertyValues } from "lit"; declare global { interface HTMLElementTagNameMap { 'odx-radio-group': OdxRadioGroup; } } declare const OdxRadioGroup_base: Constructor & typeof CustomElement; declare class OdxRadioGroup extends OdxRadioGroup_base { #private; static tagName: string; static styles: import("lit").CSSResult[]; private selection; value: string; connectedCallback(): void; clear(initialValue?: string): void; protected willUpdate(props: PropertyValues): void; protected updated(props: PropertyValues): void; } export { OdxRadioGroup };