import * as anchor from "@project-serum/anchor"; /** * Close the put option seller position. * @param provider Anchor provider * @param assetNftMint Asset NFT which underlies the option * @param sellerPositionNftMint Position NFT representing option seller position * @param assetNftTokenAccount Token account containing the asset NFT * @returns Promise resolving to the transaction signature */ export declare const closePutOptionSeller: (provider: anchor.AnchorProvider, assetNftMint: anchor.web3.PublicKey, sellerPositionNftMint: anchor.web3.PublicKey, assetNftTokenAccount?: anchor.web3.PublicKey) => Promise;