/**
 * 配置管理工具
 */
import { VendorChannelConfig } from '../types';
declare global {
    var __JPUSH_CONFIG__: {
        appKey: string;
        channel: string;
        packageName: string;
        apsForProduction: boolean;
        vendorChannels?: VendorChannelConfig;
    } | undefined;
}
/**
 * 设置全局配置
 */
export declare function setConfig(appKey: string, channel: string, packageName: string, apsForProduction: boolean, vendorChannels?: VendorChannelConfig): void;
/**
 * 获取全局配置
 */
export declare function getConfig(): {
    appKey: string;
    channel: string;
    packageName: string;
    apsForProduction: boolean;
    vendorChannels?: VendorChannelConfig;
} | undefined;
//# sourceMappingURL=config.d.ts.map