import { Signer, ContractFactory, Overrides } from "ethers";
import { Provider, TransactionRequest } from "@ethersproject/providers";
import type { ERC721Upgradeable } from "../ERC721Upgradeable";
export declare class ERC721Upgradeable__factory extends ContractFactory {
    constructor(signer?: Signer);
    deploy(overrides?: Overrides & {
        from?: string | Promise<string>;
    }): Promise<ERC721Upgradeable>;
    getDeployTransaction(overrides?: Overrides & {
        from?: string | Promise<string>;
    }): TransactionRequest;
    attach(address: string): ERC721Upgradeable;
    connect(signer: Signer): ERC721Upgradeable__factory;
    static connect(address: string, signerOrProvider: Signer | Provider): ERC721Upgradeable;
}
