import type { ENV } from "../utils/env/types";
import type EventEmitter from 'eventemitter3';
export {};
declare global {
    interface Window {
        __CURRENT_SCRIPT_SRC__?: string;
        __CN_ENV__?: ENV;
        __current_micro_config__: {
            prefix?: string;
        };
        _GATEWAY_UA?: {
            loadMobile?: boolean;
            loadPC?: boolean;
        };
        __CN_UTILS_EVENTINSTANCE__?: EventEmitter;
        _PANDA_EXUI?: any;
    }
}
