import { PublicKey, TransactionInstruction } from '@solana/web3.js'; export interface WithdrawTxnRequest { associatedOwnersTokenAddress: PublicKey; associatedBorrowerTokenAddress: PublicKey; associatedPdaTokenAddress: PublicKey; pda: PublicKey; holdingAccount: PublicKey; programId: PublicKey; } export declare const createWithdrawTx: ({ associatedOwnersTokenAddress, associatedBorrowerTokenAddress, associatedPdaTokenAddress, programId, holdingAccount, pda, }: WithdrawTxnRequest) => TransactionInstruction;