import { InputAction } from "../../../state/components/input/reducer";
export type NumberInputTValue = number | undefined;
export type Action = InputAction<NumberInputTValue>;
export declare const reducer: (state: import("../../../state/components/input/reducer").InputState<NumberInputTValue>, action: InputAction<NumberInputTValue>) => import("../../../state/components/input/reducer").InputState<NumberInputTValue>;
