/**
 * 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 { DeployErc721RequestMintConfig } from './deploy-erc721-request-mint-config';
export interface DeployErc721Request {
    'description'?: string;
    'external_link'?: string;
    'image'?: string;
    /**
     * Max supply (0 = unlimited)
     */
    'max_supply'?: number;
    'mint_config'?: DeployErc721RequestMintConfig;
    'name': string;
    'network': DeployErc721RequestNetworkEnum;
    /**
     * Royalty in basis points (500 = 5%, max 2500 = 25%)
     */
    'royalty_bps'?: number;
    /**
     * Defaults to creator wallet
     */
    'royalty_recipient'?: string;
    'symbol': string;
}
export declare const DeployErc721RequestNetworkEnum: {
    readonly Base: "base";
    readonly Optimism: "optimism";
    readonly BaseSepolia: "base-sepolia";
};
export type DeployErc721RequestNetworkEnum = typeof DeployErc721RequestNetworkEnum[keyof typeof DeployErc721RequestNetworkEnum];
