import * as anchor from "@project-serum/anchor"; import { Response } from "../../types/types"; /** * Create a put option request as an option buyer * @param provider Anchor provider * @param collectionIdentifierKey CollectionIdentifier key of the NFT collection which underlies the option * @returns Promise resolving to the transaction signature */ export declare const floorCreatePutOption: (provider: anchor.AnchorProvider, collectionIdentifierKey: anchor.web3.PublicKey, strikePrice: anchor.BN, duration: anchor.BN, premium: anchor.BN) => Promise;