import { BaseUrl } from './typings/endpoints'; declare type Options = { environment: 'test' | 'live'; }; export default class MultiSafepayClient { private apiKey; gateways: any; orders: any; issuers: any; refunds: any; static baseURL: BaseUrl; constructor(apiKey: string, options?: Options); existsApiKey(apiKey: string): void; createClient(): any; setEnviorement(options: Options): void; } export {};