/// import { ReactAddon } from '../../react'; import { ReactControl } from './../../react/base'; export declare const ButtonShapeType: { circle: string; round: string; }; export declare const ButtonType: { primary: string; dashed: string; danger: string; link: string; }; export declare class Button extends ReactAddon { disabled?: boolean; ghost?: boolean; href?: string; htmlType?: string; icon?: string; isLoading?: boolean; loadingDelay?: number; shape?: keyof typeof ButtonShapeType; target?: string; buttonType?: keyof typeof ButtonType; block?: boolean; children?: ReactControl; onClick?: (e: any) => void; onRender?: (() => JSX.Element) | undefined; } export declare const ButtonControl: any;