index.d.ts 476 Bytes
import { SDKBase } from "./SDKBase";
import { SDKConfigType, SDKConfigTypeV2 } from "./SDKTypes";
import { SDKEvents } from "./SDKEvents";
import { TimeManager } from "./TimeManager";
export declare let SDK: SDKBase;
export declare function setSDKConfig(config: SDKConfigType, sdk: {
    new (): SDKBase;
}): void;
export { SDKBase, SDKConfigType, SDKEvents, TimeManager };
export declare function setSDKConfigV2(config: SDKConfigTypeV2, sdk: {
    new (): SDKBase;
}): void;