/** * 价格的结尾dom */ import { FC } from "react"; import { OrderTypeEnum } from "../../../../../../../exchangeShared/types"; interface SuffixPriceProps { /** 是否条件单 */ condition?: boolean; showNew?: boolean; /** 点击最新 */ onClickNewPrice?: () => void; unit?: string; triggerValue?: OrderTypeEnum; onTriggerTypeChange?: (val: OrderTypeEnum) => void; } export declare const SuffixPrice: FC; export {};