import React from "react"; export interface ButtonProps extends React.ButtonHTMLAttributes { color?: "primary" | "secondary" | "light" | "dark" | "success" | "danger" | "warning" | "link"; variant?: "contained" | "outlined"; size?: "small" | "medium" | "large"; fullWidth?: boolean; startIcon?: React.ReactNode; endIcon?: React.ReactNode; }