import { ButtonHTMLAttributes, JSXElementConstructor, FC } from 'react';
interface ButtonProps extends ButtonHTMLAttributes {
href?: string;
variant?: 'naked' | 'primary' | 'secondary';
active?: boolean;
rounded?: boolean;
label?: string;
size?: 'normal' | 'small' | 'large';
Component?: string | JSXElementConstructor;
loading?: boolean;
stretch?: boolean;
disabled?: boolean;
}
declare const Button: FC;
export { Button };