import { DirEnum, ESide } from "../../../_utils/contractRules"; import React, { FC } from "react"; export interface TipsPropsRefProps { getStrikePrice: () => string; } export interface ProfitTipsProps { initProfitValue?: string | number; profitV: string; initLossValue?: string | number; lossV: string; tickSizeScale: number; avgEntryPrice: string | number; positionAmt: string | number; ctVal: string; ctValScale: number; costSizeScale: number; profitUnit: { label: string; value: string; }; lossUnit: { label: string; value: string; }; posMargin: string | number; side: ESide; dir: DirEnum; typeLabel: string; onRef?: React.Ref; } declare const ProfitTips: FC; export default ProfitTips;