// @flow /* DOCUMENTATION: https://orbit.kiwi/components/socialbutton/ */ import * as React from "react"; import type { ButtonCommonProps, Size } from "../primitives/ButtonPrimitive"; export type Type = "apple" | "facebook" | "google" | "twitter"; export type Props = {| +type?: Type, +size?: Size, ...$Diff< ButtonCommonProps, {| +iconLeft?: React.Node, +iconRight?: React.Node, +circled?: boolean |}, >, |}; declare export default React.AbstractComponent;