/** * @description 数字输入框和slider滑动条绑定 * * @date 创建时间 2022-10-27 15:33 * @author 开发人员 yena */ import React from "react"; import { OrderTypeEnum } from "../../../../../../exchangeShared/types"; export interface PriceInputProps { scale?: number; step?: number; error?: boolean; value?: any; orderType: OrderTypeEnum; quote: string; lastPrice?: string; name?: any; onChangePriceInput: (val: string, focus: any) => void; triggerTypeChange: (type: OrderTypeEnum) => void; optimumLevel?: number | string; } export declare const PriceInput: React.ForwardRefExoticComponent>;