import type { RaribleSdk } from "@rarible/protocol-ethereum-sdk"; import type { Maybe } from "@rarible/types"; import type { EthereumWallet } from "@rarible/sdk-wallet"; import type { ICryptopunkUnwrap, ICryptopunkWrap } from "../../types/ethereum/domain"; export declare class EthereumCryptopunk { private readonly sdk; private wallet; constructor(sdk: RaribleSdk, wallet: Maybe); wrap: ICryptopunkWrap; unwrap: ICryptopunkUnwrap; }