export declare function useOrderPlacingError(): { getTotalError: ({ total: _total, side, symbol, price: _price, checkAvailableRemain, }: { total: number | string; side: "Buy" | "Sell"; symbol?: string | undefined; price?: string | number | undefined; checkAvailableRemain?: boolean | undefined; }) => string | undefined; getPriceError: ({ price, symbol, }: { price?: number | undefined; symbol?: string | undefined; }) => string | undefined; getAmountError: ({ side, price: _price, symbol, baseQuantity: _baseQuantity, minQuantityBasedOnMinNotional, type, checkMaximum, checkAvailableRemain, shouldRoundUp, }: { side: "Buy" | "Sell"; price?: string | number | undefined; symbol?: string | undefined; baseQuantity?: string | number | undefined; minQuantityBasedOnMinNotional?: number | undefined; type: "market" | "limit"; checkMaximum?: boolean | undefined; checkAvailableRemain?: boolean | undefined; shouldRoundUp?: boolean | undefined; }) => string | undefined; }; //# sourceMappingURL=index.d.ts.map