// @flow import * as React from "react"; import type { SharedProps } from ".."; 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, +selected?: boolean, |}; export type StepperStatelessType = React.ComponentType; declare export default StepperStatelessType;