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