// @flow /* DOCUMENTATION: https://orbit.kiwi/components/notificationbadge/ */ import * as React from "react"; import type { Globals } from "../common/common.js.flow"; import type { Type } from "../Badge"; export type Props = {| +children?: React.Node, +type?: Type, +icon?: React.Node, +ariaLabel?: string, ...Globals, |}; declare export default React.ComponentType;