import { MmUIComponent } from './component' /** Button Component */ export declare class MmButton extends MmUIComponent { /** Button type */ type: "" | "primary" | "danger" /** Button size */ size: string /** Is ghost button or not */ ghost: boolean /** Is disabled or not */ disabled: boolean /** Is disabled and show loading icon or not */ loading: boolean /** Native button type */ nativeType: string /** Is circle button or not */ circle: boolean /** Button left icon */ icon: string /** Button left icon size */ iconSize: string }