import { ContractCallsService } from "./contract-calls.service"; import express from "express"; import { EventStatus } from "@haechi-labs/henesis-wallet-core/lib/__generate__/eth"; import { ContractCallsDTO } from "../../eth/dto/contract-calls.dto"; import { PaginationDTO } from "../../eth/dto/pagination.dto"; export declare class ContractCallsController { private readonly callEventsService; constructor(callEventsService: ContractCallsService); getCallEvents(request: express.Request, walletId?: string, transactionId?: string, transactionHash?: string, status?: EventStatus, ticker?: string, updatedAtGte?: string, updatedAtLt?: string, size?: number, page?: number): Promise>; }