import { MmUIComponent } from './component' /** Radio component */ export declare class MmRadio extends MmUIComponent { /** The label content */ label: string /** The value of the radio */ value: string /** Input's name attribute */ name: string /** Whether the read-only */ readonly: boolean /** Whether to disable */ disabled: boolean }