import { default as React } from 'react'; import { NumberInputIncrementButtonProps } from './types'; /** * The styled increment button of a number stepper. The core `NumberInput.IncrementButton` supplies * the wiring (increment on click, disabled at `max`); the design-system `IconButton` supplies the look. */ export declare function NumberInputIncrementButton({ label, ...props }: NumberInputIncrementButtonProps): React.JSX.Element; export declare namespace NumberInputIncrementButton { var displayName: string; }