/** * @description 数字输入框和slider滑动条绑定 * * @date 创建时间 2022-10-27 15:33 * @author 开发人员 yena */ import React from "react"; import { SuffixQuantityProps } from "./SuffixQuantity"; export interface QuantityInputProps extends SuffixQuantityProps { scale?: number; error?: boolean; showCenter: boolean; value?: any; sideQuantity: { buy: string; sell: string; }; onChangeQuantityInput: (val: string) => void; handleClearQuantityInput: (bool?: boolean) => void; name?: any; isLogin: boolean; } export declare const QuantityInput: React.ForwardRefExoticComponent>;