import { TransfersService } from "./transfers.service"; import express from "express"; import { PaginationDTO } from "../dto/pagination.dto"; import { TransferDTO } from "../dto/transfer.dto"; export declare class TransfersController { private readonly transfersService; constructor(transfersService: TransfersService); getTransfers(request: express.Request, type?: string, walletId?: string, status?: string, address?: string, transactionHash?: string, updatedAtGte?: string, updatedAtLt?: string, size?: string, page?: string): Promise>; getTransfer(request: express.Request, transferId: string): Promise; }