import Tailwind from '../base/tailwind-base'; export default class PlusRadioGroup extends Tailwind { static formAssociated: boolean; name: string; value: string; /** Disables all radio buttons in the group. */ disabled: boolean; /** Makes the radio group required for form submission. */ required: boolean; /** * The size of all radio buttons in the group * - sm: Small size * - md: Medium size * - lg: Large size * @default 'md' */ size: 'sm' | 'md' | 'lg'; /** Displays the radio buttons in an error state. */ error: boolean; /** * Orientation of the radio buttons * - horizontal: Radio buttons are arranged side by side * - vertical: Radio buttons are stacked vertically */ orientation: 'horizontal' | 'vertical'; private internals; constructor(); private updateRadios; private handlePlusChange; updated(changedProperties: Map): void; firstUpdated(): void; connectedCallback(): void; disconnectedCallback(): void; render(): import("lit-html").TemplateResult<1>; } export { PlusRadioGroup }; //# sourceMappingURL=radio-group.d.ts.map