import * as anchor from "@project-serum/anchor"; /** * Fetch CollectionIdentifier account * @param connection Solana Web3 connection object * @param collectionIdentifierKey collectionIdentifierKey representing an NFT collection uniquely * @returns Promise resolving to the OptionState account contents */ export declare const getCollection: (connection: anchor.web3.Connection, collectionIdentifierKey: anchor.web3.PublicKey) => Promise>>; /** * Fetch all CollectionIdentifier accounts * @param connection Solana Web3 connection object * @returns Promise resolving to the OptionState account contents */ export declare const getAllCollections: (connection: anchor.web3.Connection) => Promise>>[]>;