// @flow /* DOCUMENTATION: https://orbit.kiwi/components/inputgroup/ */ import * as React from "react"; import type { Globals, Translation } from "../common/common.js.flow"; import type { spaceAfter } from "../common/getSpacingToken"; export type Props = {| ...Globals, ...spaceAfter, +label?: Translation, +flex?: string | string[], +size?: "small" | "normal", +help?: React.Node, +children: React.Node, +helpClosable?: boolean, +error?: React.Node, +disabled?: boolean, +onBlurGroup?: ( ev: SyntheticInputEvent | SyntheticInputEvent, ) => void | Promise, +onChange?: ( ev: SyntheticInputEvent | SyntheticInputEvent, ) => void | Promise, +onFocus?: ( ev: SyntheticInputEvent | SyntheticInputEvent, ) => void | Promise, +onBlur?: ( ev: SyntheticInputEvent | SyntheticInputEvent, ) => void | Promise, |}; declare export default React.AbstractComponent;