import { MmUIComponent } from './component' /** Checkbox Component */ export declare class MmCheckbox extends MmUIComponent { /** Label of checkbox */ label: string /** Value of checkbox */ value: any /** Checked status */ checked: any /** Is indeterminate state or not */ indeterminate: boolean /** Value for checked status */ trueValue: any /** Value for unchecked status */ falseValue: any }