import React from 'react'; import { ISvgProps } from '@muya-ui/icon-base'; import { IComponentSizeSpec } from '../specs'; export interface IInputNumberToken { arrowSuffixNodeWrapperBorder: string; arrowClickBgColor: string; arrowBorderColor: string; arrowIconSize: Record; plusIconSize: Record; width: Record; plusMinusWidth: Record; iconMargin: string; upArrowIcon?: React.FunctionComponent; downArrowIcon?: React.FunctionComponent; plusIcon?: React.FunctionComponent; minusIcon?: React.FunctionComponent; rangeInputNumberWidth: Record; }