import { FC } from "react"; interface Props { type: "TP" | "SL"; quote: string; quote_dp?: number; onChange: (key: string, value: number | string) => void; testId?: string; values: { PnL: string; Offset: string; "Offset%": string; }; } export declare enum PnLMode { PnL = "PnL", OFFSET = "Offset", PERCENTAGE = "Offset%" } export declare const PnlInput: FC; export {}; //# sourceMappingURL=pnlInput.d.ts.map