import { BinanceSignedClient } from '../../../clients'; export interface RepayWithCollateralResponse { coin: string; collateralCoin: string; amount: number; quoteId: string; } export declare function repayWithCollateral(client: BinanceSignedClient, quoteId: string): Promise;