import { FC } from "react"; import { type API, AlgoOrderRootType } from "@orderly.network/types"; export declare const TPSLEditor: FC<{ symbol: string; /** * The maximum quantity that can be set for the TP/SL order */ maxQty: number; onSuccess?: () => void; onCancel?: () => void; position: API.Position; order?: API.AlgoOrder; canModifyQty?: boolean; isEditing?: boolean; onTypeChange?: (type: AlgoOrderRootType) => void; quoteDp?: number; }>; //# sourceMappingURL=tp_sl_editor.d.ts.map