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