import type * as React from 'react'; import type { InputControlSize } from "../../controls/types.js"; import "./NumericArrows.css"; interface NumericArrowsProps extends React.HTMLAttributes<'div'> { className?: string; size: InputControlSize; disabled?: boolean; min?: number; max?: number; onUpClick: React.MouseEventHandler; onDownClick: React.MouseEventHandler; } export declare function NumericArrows({ className, size, disabled, onUpClick, onDownClick, ...restProps }: NumericArrowsProps): import("react/jsx-runtime").JSX.Element; export {};