import { Response } from '../@types/index.js'; type options = Omit & { body?: T; }; declare const fetchFBX: (url: string | URL | globalThis.Request, token: string, method: "GET" | "POST" | "PUT" | "DELETE" | string, options?: options) => Promise>; declare const request: (url: string | URL | globalThis.Request, token: string, options?: options, method?: "GET" | "POST" | "PUT" | "DELETE") => Promise>; export { request as default, fetchFBX, request };