export = APIClient; /** * @typedef {Object} Options * @property {boolean} responseHeaders - Whether response headers are returned or not. */ declare class APIClient { /** * @param {object} conf * @param {string} method * @param {string} url * @param {object} query * @param {object} body * @param {object} xHeaders */ static execute(conf: object, method: string, url: string, query: object, body: object, xHeaders: object, options: any): Promise>; } declare namespace APIClient { export { Options }; } type Options = { /** * - Whether response headers are returned or not. */ responseHeaders: boolean; };