// @flow import * as React from "react"; import type { ButtonCommonProps } from "../../primitives/ButtonPrimitive"; export type Type = | "info" | "success" | "warning" | "critical" | "infoSubtle" | "successSubtle" | "warningSubtle" | "criticalSubtle"; export type Props = {| +type?: Type, ...$Diff, |}; declare export default React.AbstractComponent;