import * as anchor from "@project-serum/anchor"; /** * Fetch OptionState account * @param connection Solana Web3 connection object * @param nftMint Asset NFT which underlies the option * @returns Promise resolving to the OptionState account contents */ export declare const getOption: (connection: anchor.web3.Connection, assetNftMint: anchor.web3.PublicKey) => Promise>>; /** * Fetch all OptionState accounts * @param connection Solana Web3 connection object * @returns Promise resolving to the OptionState account contents */ export declare const getAllOptions: (connection: anchor.web3.Connection) => Promise>>[]>;