export type Environment = "sandbox" | "production" | "local"; export declare const BASE_URLS: Record; export interface SDKConfig { apiKey: string; clientId: string; environment?: Environment; timeout?: number; } //# sourceMappingURL=Config.d.ts.map