import { web3 } from '@project-serum/anchor'; export declare const WRAPPED_SOL_MINT: web3.PublicKey; export declare const AUCTION_HOUSE_PROGRAM_ID: web3.PublicKey; export declare const LIQNFT_TREASURY_ACCOUNT: web3.PublicKey; export declare const CANDY_SHOP_PROGRAM_ID: web3.PublicKey; export declare const CANDY_SHOP_V2_PROGRAM_ID: web3.PublicKey; export declare const COMPUTE_BUDGET_PROGRAM_ID: web3.PublicKey; export declare const EDITION_DROP_PROGRAM_ID: web3.PublicKey; export declare const TOKEN_METADATA_PROGRAM_ID: web3.PublicKey; export declare const BID = "bid"; export declare const WALLET = "wallet"; export declare const AUCTION = "auction"; export declare const AUCTION_HOUSE = "auction_house"; export declare const FEE_PAYER = "fee_payer"; export declare const TREASURY = "treasury"; export declare const CANDY_STORE = "candy_shop"; export declare const AUTHORITY = "authority"; export declare const ORDER = "order"; export declare type Side = 'sell' | 'buy'; export declare const EDITION_DROP = "drop"; export declare const RECEIPT = "receipt"; export declare const EDITION_MARKER_BIT_SIZE = 248; export declare const FEE_ACCOUNT_MIN_BAL: number; export declare const NATIVE_MARKETPLACE_CREATORS_LIMIT = 5; export declare const SPL_MARKETPLACE_CREATORS_LIMIT = 3; export declare const NATIVE_AUCTION_CREATORS_LIMIT = 5; export declare const SPL_AUCTION_CREATORS_LIMIT = 2; export declare const FETCH_LIST_LIMIT = 10;