import { Connection, PublicKey, RpcResponseAndContext, SignatureResult } from '@solana/web3.js'; import { Wallet } from '@project-serum/anchor'; export interface MintNFTParams { connection: Connection; wallet: Wallet; uri: string; maxSupply?: number; updateAuthority: PublicKey; } export interface MintNFTResponse { transaction: RpcResponseAndContext; mint: PublicKey; metadata: PublicKey; edition: PublicKey; } export declare const mintNFT: ({ connection, wallet, uri, maxSupply, updateAuthority }: MintNFTParams) => Promise; //# sourceMappingURL=mint.d.ts.map