/// import { ReactAddon } from '../../react/base'; export declare const ButtonType: { primary: string; ghost: string; warning: string; }; export declare class MobileButton extends ReactAddon { title?: string; buttonType?: keyof typeof ButtonType; icon?: any; disable?: boolean; inline?: boolean; loading?: boolean; onClick?: () => void; onRender?: (() => JSX.Element) | undefined; } export declare const MobileButtonControl: any;