import React from 'react';
import './style.less';
interface ButtonProps {
    primary?: boolean;
    backgroundColor?: string;
    size?: 'small' | 'medium' | 'large';
    label: string;
    onClick?: () => void;
}
declare const Button: React.FC<ButtonProps>;
export default Button;
