import { LitElement } from 'lit-element'; /** * Radio Group, group element to associate a collection of radio inputs * * @noInheritDoc * @element li-radio-group * @slot default - Content slot for radio input */ export declare class LithiumRadioGroup extends LitElement { static readonly styles: import("lit-element").CSSResult[]; /** Display radio elements inline */ inline: boolean; /** Name provides the name for each radio and will automatically associate all radios in element */ name: string; private liRadioElements; render(): import("lit-element").TemplateResult; connectedCallback(): void; /** internal */ _clearRadios(): void; } declare global { interface HTMLElementTagNameMap { 'li-radio-group': LithiumRadioGroup; } }