/* tslint:disable:all */ import { KushkiGateway } from "./../../lib/gateway/KushkiGateway"; import "reflect-metadata"; import { IAntiFraud } from "./../../lib/repository/IAntiFraud"; import { IPayoutsCashService } from "./../../lib/repository/IPayoutsCashService"; import { Observable } from "rxjs"; import { PayoutsCashTokenRequest } from "./../../lib/types/payouts_cash_request"; import { TokenResponse } from "./../../lib/types/remote/token_response"; /** * Implementation */ export declare class PayoutsCashService implements IPayoutsCashService { private readonly _kushkiGateway; private readonly _antiFraud; constructor(gateway: KushkiGateway, antiFraud: IAntiFraud); requestPayoutsCashToken(body: PayoutsCashTokenRequest, mid: string, isTest: boolean, regional: boolean): Observable; }