// @flow import type { Globals } from "../common/common.js.flow"; export type Props = {| +size?: "small" | "normal", +name?: string, +label?: string, +value?: string, +placeholder?: string, +help?: React$Node, +error?: React$Node, +resize?: "vertical" | "none", +disabled?: boolean, +maxLength?: number, +onChange?: (ev: SyntheticInputEvent) => void | Promise, +onFocus?: (ev: SyntheticInputEvent) => void | Promise, +onBlur?: (ev: SyntheticInputEvent) => void | Promise, ...Globals, |}; declare export default React$ComponentType;