// @flow /* DOCUMENTATION: https://orbit.kiwi/components/button/ */ import * as React from "react"; import type { ButtonCommonProps, Size } from "../primitives/ButtonPrimitive"; export type Type = | "primary" | "secondary" | "critical" | "primarySubtle" | "criticalSubtle" | "white" | "bundleBasic" | "bundleMedium" | "bundleTop"; export type Props = {| +type?: Type, +size?: Size, ...ButtonCommonProps, |}; declare export default React.AbstractComponent;