import * as anchor from "@project-serum/anchor"; /** * Create a put option request as an option buyer * @param provider Anchor provider * @param assetNftMint Asset NFT which underlies the option * @param assetNftTokenAccount Token account containing the asset NFT * @returns Promise resolving to the transaction signature */ export declare const createPutOption: (provider: anchor.AnchorProvider, assetNftMint: anchor.web3.PublicKey, strikePrice: anchor.BN, duration: anchor.BN, premium: anchor.BN, isGraceIncluded?: boolean, assetNftTokenAccount?: anchor.web3.PublicKey) => Promise;