export interface ApiConfig { host: string; traffic: string; defaultName?: string; tag?: string; attributesMap?: { [key: string]: string; }; } interface RequestOptions { apiConfig: ApiConfig; method?: 'GET' | 'POST'; params?: any; data?: any; } export declare function uicRequest(url: string, options: RequestOptions): Promise; export {};