import { MmUIComponent } from './component' /** Switch component */ export declare class MmSwitch extends MmUIComponent { /** True value */ onValue: any /** False value */ offValue: any /** Checked attribute of input */ checked: any /** A small icon within a dot */ icon: string /** Refer to the props for the icon component */ iconProps: { [key: string]: string } /** Whether to shrink the display to mini */ mini: boolean /** Is loaded status */ loading: boolean /** A method executed before a state change */ beforeChange: { (checked: boolean): void | Promise } }