import { Transaction } from "@mysten/sui/transactions"; import type { RouterCompleteTradeRoute } from "aftermath-ts-sdk"; export declare const useAftermathSdk: () => { quote: (coinIn: string, coinOut: string, amountIn: string, feeAddress: string) => Promise; swap: (trade: RouterCompleteTradeRoute, account: string, slippage: number, feeAddress: string) => Promise<{ tx: Transaction; }>; };