import { PublicKey, TransactionInstruction } from '@solana/web3.js'; import { Wallet } from 'src/wallet'; export interface CancelEscrowTxnRequest { owner: Wallet; ownerTokenAccount: PublicKey; pda: PublicKey; holdingAccount: PublicKey; programId: PublicKey; } export declare const createCancelEscrowTx: ({ programId, owner, ownerTokenAccount, holdingAccount, pda, }: CancelEscrowTxnRequest) => TransactionInstruction;