import { Connection, PublicKey, Transaction } from '@solana/web3.js'; import { Wallet } from 'src/wallet'; export interface WithdrawRequest { withdrawer: Wallet; associatedPdaTokenAddress: PublicKey; associatedBorrowerTokenAddress: PublicKey; associatedOwnersTokenAddress: PublicKey; token: PublicKey; connection: Connection; programId: PublicKey; } export interface WithdrawResponse { tx: Transaction; } export declare const withdrawTx: (request: WithdrawRequest) => Promise;