import * as anchor from "@project-serum/anchor"; /** * Exercise the put option * @param provider Anchor provider * @param assetNftMint Asset NFT which underlies the option * @param buyerPositionNftMint Position NFT representing option buyer position * @returns Promise resolving to the transaction signature */ export declare const exercisePutOption: (provider: anchor.AnchorProvider, assetNftMint: anchor.web3.PublicKey, buyerPositionNftMint: anchor.web3.PublicKey) => Promise;