import React from "react"; import { type ActionableRef } from "../../components/Actionable"; import type * as T from "./Button.types"; declare const Button: React.ForwardRefExoticComponent & { color?: "primary" | "critical" | "positive" | "neutral" | "warning" | "media" | "inherit"; variant?: "solid" | "outline" | "ghost"; icon?: import("../../components/Icon").IconProps["svg"]; endIcon?: import("../../components/Icon").IconProps["svg"]; size?: import("../..").Responsive; rounded?: boolean; loading?: boolean; loadingAriaLabel?: string; raised?: boolean; fullWidth?: import("../..").Responsive; highlighted?: boolean; } & React.RefAttributes>; export default Button;