/**
 * 厂商通道配置工具
 */
import { VendorChannelConfig } from '../types';
declare global {
    var __JPUSH_VENDOR_CHANNELS__: VendorChannelConfig | undefined;
}
/**
 * 获取当前配置的厂商通道列表
 */
export declare function getVendorChannels(): VendorChannelConfig | undefined;
/**
 * 获取厂商通道开启状态标记
 */
export declare function getProjectVendorFlags(vendorChannels?: VendorChannelConfig): Record<string, boolean>;
/**
 * 旧版本生成标签列表，用于清理旧配置
 */
export declare const LEGACY_PROJECT_BUILD_TAGS: string[];
/**
 * 获取buildscript需要添加的maven仓库配置
 */
export declare function getBuildscriptRepositories(vendorChannels?: VendorChannelConfig): string;
//# sourceMappingURL=vendorChannels.d.ts.map