// @flow /* DOCUMENTATION: https://orbit.kiwi/components/stopoverarrow/ */ import * as React from "react"; import type { Globals } from "../common/common.js.flow"; export type Props = {| +onChange: (ev: SyntheticInputEvent) => void | Promise, +onFocus?: (ev: SyntheticInputEvent) => void | Promise, +onBlur?: (ev: SyntheticInputEvent) => void | Promise, +disabled?: boolean, +ariaLabelledby?: string, +checked: boolean, +icon?: React.Node, ...Globals, |}; declare export default React.AbstractComponent;