import { MmUIComponent } from './component' export interface radioButtonGroupOption { value: any disabled: boolean label: string [key: string]: any } /** RadioButtonGroup component */ export declare class MmRadioButtonGroup extends MmUIComponent { /** List of options */ options: radioButtonGroupOption[] /** Value of radio button group */ value: any }