/**
 * 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.
 */
export interface DeployErc721201ResponseCollection {
    /**
     * Ethereum address
     */
    'address': string;
    'name': string;
    'network': DeployErc721201ResponseCollectionNetworkEnum;
    'symbol': string;
    'transaction_hash': string;
    'type': DeployErc721201ResponseCollectionTypeEnum;
}
export declare const DeployErc721201ResponseCollectionNetworkEnum: {
    readonly Base: "base";
    readonly Optimism: "optimism";
    readonly BaseSepolia: "base-sepolia";
};
export type DeployErc721201ResponseCollectionNetworkEnum = typeof DeployErc721201ResponseCollectionNetworkEnum[keyof typeof DeployErc721201ResponseCollectionNetworkEnum];
export declare const DeployErc721201ResponseCollectionTypeEnum: {
    readonly Erc721: "ERC721";
};
export type DeployErc721201ResponseCollectionTypeEnum = typeof DeployErc721201ResponseCollectionTypeEnum[keyof typeof DeployErc721201ResponseCollectionTypeEnum];
