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