// @flow import type { Globals, Ref } from "../common/common.js.flow"; export type Props = {| +label?: React$Node, +value?: string, +hasError?: boolean, +disabled?: boolean, +name?: string, +checked?: boolean, +info?: React$Node, +onChange?: (ev: SyntheticInputEvent) => void | Promise, ...Globals, ...Ref, |}; declare export default React$ComponentType;