import * as web3 from '@solana/web3.js'; export declare type CloseEscrowAccountInstructionArgs = { escrowPaymentBump: number; }; export declare type CloseEscrowAccountInstructionAccounts = { wallet: web3.PublicKey; escrowPaymentAccount: web3.PublicKey; auctionHouse: web3.PublicKey; }; export declare function createCloseEscrowAccountInstruction(accounts: CloseEscrowAccountInstructionAccounts, args: CloseEscrowAccountInstructionArgs): web3.TransactionInstruction;