import PaymentService from "./payment"; import AuthService from "./auth"; import { Environment } from "./shared/type"; declare class VanillaPayInternational { payment: PaymentService; auth: AuthService; environment: Environment; constructor(environment: Environment); setAccessToken(accessToken: string): void; private getUrl; } export default VanillaPayInternational;