import { EthCallEvent } from "@haechi-labs/henesis-wallet-core/lib/events"; import { EventStatus } from "@haechi-labs/henesis-wallet-core/lib/__generate__/eth"; import { BlockchainType } from "@haechi-labs/henesis-wallet-core/lib/blockchain"; export declare const EXAMPLE_ETHEREUM_CONTRACT_CALLS_DTO: ContractCallsDTO; export declare const EXAMPLE_BINANCE_SMART_CHAIN_CALLS_DTO: ContractCallsDTO; export declare class ContractCallsDTO { id: string; data: string; status: EventStatus; walletId: string; orgId: string; transactionId: string; toAddress: string; fromAddress: string; transactionHash: string; createdAt: string; updatedAt: string; blockchain: BlockchainType; metadata?: string; static fromCallEvent(event: EthCallEvent): ContractCallsDTO; }