import { FC } from 'react';
import { IconButtonProps } from '../../../IconButton';
export type NumberFieldIncrementProps = IconButtonProps;
/**
* `NumberFieldIncrementButton` is an action control used within `NumberField`
* to increase the current numeric value.
*
* It integrates with `NumberField` context and delegates all value updates
* to the internal increment logic, ensuring behavior matches the native
* `` stepping semantics.
*
* This component does not manage state directly and is designed to work
* exclusively as a child of `NumberField`.
*/
export declare const NumberFieldIncrementButton: FC;