import { MmUIComponent } from './component' /** CheckboxGroup Component */ export declare class MmCheckboxGroup extends MmUIComponent { /** Value of checkbox group */ value: any[] /** Type of checkbox group */ type: 'checkbox' | 'button' /** Options */ options: { disabled: boolean [key: string]: any }[] }