/* tslint:disable:all */ /** * Multi Merchant Service file */ import { IKushkiGateway } from "./../../lib/repository/IKushkiGateway"; import { IMultiMerchantService } from "./../../lib/repository/IMultiMerchantService"; import { Observable } from "rxjs"; import { MultiMerchantInfoRequest } from "./../../lib/types/multimerchant_info_request"; import { MultiMerchantInfoResponse } from "./../../lib/types/multimerchant_info_response"; /** * Implementation */ export declare class MultiMerchantService implements IMultiMerchantService { private readonly _gateway; constructor(gateway: IKushkiGateway); multiMerchantInfo(request: MultiMerchantInfoRequest, mid: string, isTest: boolean, regional: boolean): Observable; }