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