/* tslint:disable:all */ import "reflect-metadata"; import { ICardAsyncService } from "./../../lib/repository/ICardAsyncService"; import { IKushkiGateway } from "./../../lib/repository/IKushkiGateway"; import { Observable } from "rxjs"; import { CardAsyncTokenRequest } from "./../../lib/types/card_async_token_request"; import { CardAsyncTokenResponse } from "./../../lib/types/card_async_token_response"; import { SubscriptionCardAsyncTokenRequest } from "./../../lib/types/subscription_card_async_token_request"; import { SubscriptionCardAsyncTokenResponse } from "./../../lib/types/subscription_card_async_token_response"; /** * Implementation */ export declare class CardAsyncService implements ICardAsyncService { private readonly _gateway; constructor(gateway: IKushkiGateway); requestCardAsyncToken(request: CardAsyncTokenRequest, mid: string, isTest: boolean, regional: boolean): Observable; requestCardSubscriptionAsyncToken(request: SubscriptionCardAsyncTokenRequest, mid: string, isTest: boolean, regional: boolean): Observable; }