/* tslint:disable:all */ import { ICardAsyncService } from "./../../lib/repository/ICardAsyncService"; import { ICardDynamicService } from "./../../lib/repository/ICardDynamicService"; import { ICardService } from "./../../lib/repository/ICardService"; import { BinBody } from "./../../lib/types/bin_body"; import { CardAsyncTokenRequest } from "./../../lib/types/card_async_token_request"; import { ErrorResponse } from "./../../lib/types/error_response"; import { TokenResponse } from "./../../lib/types/remote/token_response"; import { TokenRequest } from "./../../lib/types/token_request"; /** * Implementation */ export declare class CardDynamicService implements ICardDynamicService { private readonly _cardService; private readonly _cardAsyncService; constructor(cardService: ICardService, cardAsyncService: ICardAsyncService); requestCardDynamicToken(bin: BinBody, body: CardAsyncTokenRequest | TokenRequest, mid: string, testEnv: boolean, regional: boolean, callback: (value: TokenResponse | ErrorResponse) => void): void; private _requestCardAsyncToken; private _requestToken; }