// @flow import type { SharedProps } from "../index"; export type StateLessProps = {| ...SharedProps, +value: number | string | (() => string), +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;