declare class SnapBiApiRequestor { /** * Make a remote API call with the specified URL, headers, and request body. * @param {string} url - The API endpoint URL. * @param {object} header - The headers for the request. * @param {object} body - The JSON payload for the request. * @returns {Promise} - The JSON response from the API. */ static remoteCall(url: string, header: Record, body: Record, timeout?: number | null): Promise>; } export default SnapBiApiRequestor;