import { ButtonProps as DefaultButtonProps } from 'antd';
import React from 'react';
export declare const BUTTON_CLASS_PREFIX = "condo-btn";
type CondoButtonProps = {
    type: 'primary' | 'secondary';
    children?: string;
    stateless?: boolean;
    focus?: boolean;
};
export type ButtonProps = Omit<DefaultButtonProps, 'shape' | 'size' | 'style' | 'ghost' | 'type' | 'prefix' | 'prefixCls'> & CondoButtonProps;
declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
export { Button, };
//# sourceMappingURL=button.d.ts.map