export type Environment = 'production' | 'sandbox'; export interface Routes { publicKey: string; payment: string; paymentMethodList: string; } export declare const PRODUCTION_ROUTES: Routes; export declare const SANDBOX_ROUTES: Routes; export declare const API_VERSION = "1.6"; export declare function getRoutes(env: Environment): Routes; //# sourceMappingURL=config.d.ts.map