// @flow /* DOCUMENTATION: https://orbit.kiwi/components/tag/ */ import * as React from "react"; import type { StyledComponent } from "styled-components"; import type { Globals } from "../common/common.js.flow"; type Size = "small" | "normal"; export type Type = "colored" | "neutral"; export type Props = {| +type?: Type, +children: React.Node, +dateTag?: boolean, +selected?: boolean, +size?: Size, +onRemove?: () => void | Promise, +onClick?: () => void | Promise, ...Globals, |}; declare export default React.AbstractComponent; declare export var StyledTag: StyledComponent;