/* tslint:disable:all */ import { IAntiFraud } from "./../../lib/repository/IAntiFraud"; import { IKushkiGateway } from "./../../lib/repository/IKushkiGateway"; import { ITransferSubscriptionService } from "./../../lib/repository/ITransferSubscriptionService"; import { Observable } from "rxjs"; import { BankListResponse } from "./../../lib/types/bank_list_response"; import { TokenResponse } from "./../../lib/types/remote/token_response"; import { TransferSubscriptionTokenRequest } from "./../../lib/types/transfer_subscription_token_request"; export declare class TransferSubscriptionsService implements ITransferSubscriptionService { private readonly _gateway; private readonly _antiFraud; constructor(antiFraud: IAntiFraud, gateway: IKushkiGateway); requestToken(tokenRequest: TransferSubscriptionTokenRequest, mid: string, isTest: boolean, regional: boolean): Observable; requestBankList(mid: string, isTest: boolean, regional: boolean): Observable; }