/**
 * Neynar API
 * The Neynar API allows you to interact with the Farcaster protocol among other things. See the [Neynar docs](https://docs.neynar.com/reference) for more details.
 *
 * The version of the OpenAPI document: 3.175.0
 * Contact: team@neynar.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { MintNftRequestRecipientsInner } from './mint-nft-request-recipients-inner';
/**
 * Request body for NFT minting operation.
 */
export interface MintNftRequest {
    /**
     * If true, returns immediately after sending the transaction.
     */
    'async'?: boolean;
    /**
     * Ethereum address
     */
    'contract_address': string;
    /**
     * Network to mint on.
     */
    'network': MintNftRequestNetworkEnum;
    /**
     * List of recipients to mint to (1-200 recipients allowed).
     */
    'recipients': Array<MintNftRequestRecipientsInner>;
}
export declare const MintNftRequestNetworkEnum: {
    readonly Base: "base";
    readonly Optimism: "optimism";
    readonly BaseSepolia: "base-sepolia";
};
export type MintNftRequestNetworkEnum = typeof MintNftRequestNetworkEnum[keyof typeof MintNftRequestNetworkEnum];
