type ButtonSize = "xs" | "sm" | "md" | "lg" | "xl";
type ButtonVariant = "solid" | "outline";
type ButtonColorScheme = "primary" | "secondary" | "tertiary" | "error";
type ButtonRadius = "square" | "rounded";
export type { ButtonColorScheme, ButtonRadius, ButtonSize, ButtonVariant };