/** * @license * Copyright (c) 2017 - 2025 Vaadin Ltd. * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ */ import { ElementMixin } from '@scoped-vaadin/component-base/src/element-mixin.js'; import { ThemableMixin } from '@scoped-vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js'; import { type RadioGroupEventMap, RadioGroupMixin } from './vaadin-radio-group-mixin.js'; export * from './vaadin-radio-group-mixin.js'; /** * `` is a web component that allows the user to choose one item from a group of choices. * * ```html * * * * * * ``` * * ### Styling * * The following shadow DOM parts are available for styling: * * Part name | Description * ---------------------|---------------- * `label` | The slotted label element wrapper * `group-field` | The radio button elements wrapper * `helper-text` | The slotted helper text element wrapper * `error-message` | The slotted error message element wrapper * `required-indicator` | The `required` state indicator element * * The following state attributes are available for styling: * * Attribute | Description | Part name * --------------------|-------------------------------------------|------------ * `disabled` | Set when the element is disabled | :host * `readonly` | Set when the element is readonly | :host * `invalid` | Set when the element is invalid | :host * `focused` | Set when the element is focused | :host * `has-label` | Set when the element has a label | :host * `has-value` | Set when the element has a value | :host * `has-helper` | Set when the element has helper text | :host * `has-error-message` | Set when the element has an error message | :host * * See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation. * * @fires {CustomEvent} invalid-changed - Fired when the `invalid` property changes. * @fires {CustomEvent} value-changed - Fired when the `value` property changes. * @fires {CustomEvent} validated - Fired whenever the field is validated. */ declare class RadioGroup extends RadioGroupMixin(ElementMixin(ThemableMixin(HTMLElement))) { addEventListener( type: K, listener: (this: RadioGroup, ev: RadioGroupEventMap[K]) => void, options?: AddEventListenerOptions | boolean, ): void; removeEventListener( type: K, listener: (this: RadioGroup, ev: RadioGroupEventMap[K]) => void, options?: EventListenerOptions | boolean, ): void; } declare global { interface HTMLElementTagNameMap { 'vaadin24-radio-group': RadioGroup; } } export { RadioGroup };