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