/// import * as beet from '@metaplex-foundation/beet'; import * as web3 from '@solana/web3.js'; import * as beetSolana from '@metaplex-foundation/beet-solana'; import { Key } from '../types/Key'; export declare type MasterEditionV2Args = { key: Key; supply: beet.bignum; maxSupply: beet.COption; }; export declare class MasterEditionV2 implements MasterEditionV2Args { readonly key: Key; readonly supply: beet.bignum; readonly maxSupply: beet.COption; private constructor(); static fromArgs(args: MasterEditionV2Args): MasterEditionV2; static fromAccountInfo(accountInfo: web3.AccountInfo, offset?: number): [MasterEditionV2, number]; static fromAccountAddress(connection: web3.Connection, address: web3.PublicKey): Promise; static gpaBuilder(programId?: web3.PublicKey): beetSolana.GpaBuilder; static deserialize(buf: Buffer, offset?: number): [MasterEditionV2, number]; serialize(): [Buffer, number]; static byteSize(args: MasterEditionV2Args): number; static getMinimumBalanceForRentExemption(args: MasterEditionV2Args, connection: web3.Connection, commitment?: web3.Commitment): Promise; pretty(): { key: string; supply: number | { toNumber: () => number; }; maxSupply: beet.bignum; }; } export declare const masterEditionV2Beet: beet.FixableBeetStruct;