import { Exception } from './exception.js'; export declare function mergeObjects(...objects: T): T[0]; export declare function isPlainObject(value: unknown): value is Record; export declare function normalizeHeaders(input?: HeadersInit): Record; export declare function isException(error: unknown): error is Exception; export declare function makeBody(body: unknown): { body: Blob | FormData | URLSearchParams | ReadableStream; type?: undefined; } | { body: string; type: string; }; export declare function resolveUrl(configUrl: string, baseUrl?: string, locationHref?: string): URL; //# sourceMappingURL=helpers.d.ts.map