/* tslint:disable:all */ import { KushkiGateway } from "./../../lib/gateway/KushkiGateway"; import "reflect-metadata"; import { IAntiFraud } from "./../../lib/repository/IAntiFraud"; import { IPayoutsTransferService } from "./../../lib/repository/IPayoutsTransferService"; import { Observable } from "rxjs"; import { BankListResponse } from "./../../lib/types/bank_list_response"; import { PayoutsTransferTokenRequest } from "./../../lib/types/payouts_transfer_token_request"; import { TokenResponse } from "./../../lib/types/remote/token_response"; /** * Implementation */ export declare class PayoutsTransferService implements IPayoutsTransferService { private readonly _antiFraud; private readonly _kushkiGateway; constructor(antiFraud: IAntiFraud, gateway: KushkiGateway); requestPayoutsTransferToken(body: PayoutsTransferTokenRequest, mid: string, isTest: boolean, regional: boolean): Observable; requestPayoutsTransferBankList(mid: string, isTest: boolean, regional: boolean): Observable; }