import * as web3 from '@solana/web3.js'; import * as beet from '@convergence-rfq/beet'; export type OptionMarket = { optionMint: web3.PublicKey; writerTokenMint: web3.PublicKey; underlyingAssetMint: web3.PublicKey; quoteAssetMint: web3.PublicKey; underlyingAmountPerContract: beet.bignum; quoteAmountPerContract: beet.bignum; expirationUnixTimestamp: beet.bignum; underlyingAssetPool: web3.PublicKey; quoteAssetPool: web3.PublicKey; mintFeeAccount: web3.PublicKey; exerciseFeeAccount: web3.PublicKey; expired: boolean; bumpSeed: number; }; export declare const optionMarketBeet: beet.BeetArgsStruct;