import * as anchor from "@project-serum/anchor"; /** * Fetch OptionState account * @param connection Solana Web3 connection object * @param optionKey OptionKey representing an option uniquely * @returns Promise resolving to the OptionState account contents */ export declare const getFloorOption: (connection: anchor.web3.Connection, optionKey: 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 getAllFloorOptions: (connection: anchor.web3.Connection) => Promise>>[]>;