import { SeiAgentKit } from "../../index";
import { Address } from "viem";
/**
 * Mints an ERC721 token to a recipient
 * @param agent The SeiAgentKit instance
 * @param recipient The recipient address who will receive the minted token
 * @param tokenAddress The ERC721 token contract address
 * @param tokenId The token ID to mint
 * @returns Transaction details as string or error message
 */
export declare function erc721Mint(agent: SeiAgentKit, recipient: Address, tokenAddress: Address, tokenId: bigint): Promise<string>;
//# sourceMappingURL=mint.d.ts.map