import { HttpError, HttpResponse } from "../http.utils"; import type { HttpHandlerProps } from "../http.utils"; import { OpenbloxConfig } from "../../config"; export declare const isOpenCloudUrl: (url: string) => boolean; export declare const detectBEDEVVersionForUrl: (url: string) => 1 | 2 | undefined; export declare const getParsedErrors: (response: HttpResponse) => Promise; export declare const HttpHandler: (config: OpenbloxConfig, { url, method, headers, body, formData }: HttpHandlerProps) => Promise>;