/**
 * Minimal fetch-compatible wrapper around XMLHttpRequest.
 * Used as an automatic fallback when globalThis.fetch is unavailable
 * (e.g. Cocos Creator Native).
 */
export declare function xhrFetch(url: string | URL | Request, init?: RequestInit): Promise<Response>;
