import { KeypairLike, Operation } from "@honeycomb-protocol/hive-control"; import { PublicKey } from "@solana/web3.js"; import { Switch } from "../handler"; /** * Arguments for minting an NFT (Non-Fungible Token). */ export interface CreateMintCNFTIxArgs { owner: KeypairLike | PublicKey; payer?: KeypairLike | PublicKey; merkleTree: PublicKey; } /** * Mint an CNFT (Compressed Non-Fungible Token). * * @param args - An object containing information about the CNFT minting. * @param _switch - An instance of the Switch class representing the CNFT switch. * @returns An object containing the minting operation and the mint's public key. */ export declare const createMintCNFTIx: (args: CreateMintCNFTIxArgs, _switch: Switch) => Promise<{ operation: Operation; }>; //# sourceMappingURL=mintCnft.d.ts.map