/** * Native HttpClient implementation using fetch API to replace http-client-methods * and resolve punycode deprecation warnings. */ export declare function HttpGet(url: string, headers?: Record, objectResponse?: boolean): Promise; export declare function HttpPost(url: string, data?: any, headers?: Record, objectResponse?: boolean): Promise; export declare function HttpCustom(method: string, url: string, body?: any, headers?: Record, objectResponse?: boolean): Promise; export declare function HttpGetJson(url: string, headers?: Record): Promise; export declare function HttpPostJson(url: string, data?: any, headers?: Record): Promise; export declare function HttpCustomJson(method: string, url: string, body?: any, headers?: Record): Promise;