import { DetailedHTMLProps, ButtonHTMLAttributes } from 'react';
export interface ButtonProps extends Omit, HTMLButtonElement>, "size"> {
className?: string;
disabled?: boolean;
fluid?: boolean;
variant?: "outlined" | "contained" | "ghost";
color?: "primary" | "secondary";
size?: "small" | "medium" | "large";
rounded?: boolean;
}
export declare const Button: import('react').ForwardRefExoticComponent & import('react').RefAttributes>;