import { TransfersService } from "./transfers.service"; import { TransferDTO } from "../../eth/dto/transfer.dto"; import express from "express"; import { PaginationDTO } from "../../eth/dto/pagination.dto"; import { EventStatus, TransferType } from "@haechi-labs/henesis-wallet-core/lib/__generate__/eth"; export declare class TransfersController { private readonly transfersService; constructor(transfersService: TransfersService); getTransfers(request: express.Request, ticker?: string, walletId?: string, masterWalletId?: string, transactionId?: string, transactionHash?: string, status?: EventStatus, transferType?: TransferType, updatedAtGte?: string, updatedAtLt?: string, size?: number, page?: number): Promise>; }