import { Component, Attributes } from 'jinge'; export interface RadioAttrs { id?: string; name?: string; checked?: boolean; disabled?: boolean; required?: boolean; value?: unknown; } export declare class Radio extends Component { static template: string; id?: string; name?: string; checked?: boolean; disabled?: boolean; required?: boolean; value?: unknown; _renderLabel: boolean; rippleActive: boolean; constructor(attrs: Attributes); toggleCheck(): void; }