// @flow import * as React from "react"; import type { SharedProps } from ".."; import type { RefType } from "../../common/common.js.flow"; export type StateLessProps = {| ...SharedProps, +value: number | string | (() => string | number), +forwardedRef?: RefType, +disabledIncrement?: boolean, +disabledDecrement?: boolean, +onKeyDown?: (ev: SyntheticKeyboardEvent) => void | Promise, +onDecrement?: ( ev: SyntheticEvent | SyntheticKeyboardEvent, ) => void | Promise, +onIncrement?: ( ev: SyntheticEvent | SyntheticKeyboardEvent, ) => void | Promise, +onChange?: (SyntheticInputEvent) => void | Promise, |}; declare export default React.ComponentType;