import { FC } from "react"; import { API, AlgoOrderEntity } from "@orderly.network/types"; export interface Props { symbol: string; /** * Base tick size */ onChange: (key: string, value: number | string) => void; maxQty: number; canModifyQty?: boolean; onSubmit: () => Promise; onCancel?: () => void; isEditing?: boolean; className?: string; oldOrder?: API.AlgoOrder; errors: { [key: string]: { message: string; }; } | null; order: Partial; } export declare const TPSLForm: FC; //# sourceMappingURL=tpAndslForm.d.ts.map