/// <reference path="../../src/websdk/global.d.ts" />
import { WebSDKSetting } from './index.impl';
declare class WebSDK {
    key: any;
    config: WebSDKSetting;
    keysConfig(setting: WebSDKSetting): void;
    constructor();
    use(key: string, ...args: any[]): any;
    versionError(error: any): any;
    catchError(error: any): any;
}
declare const instance: WebSDK;
export default instance;
