/** * Converts a native Fetch `Headers` object into a plain `Record`. * Used when wrapping a native `fetch` response into the SDK's `FileResponse` * shape (which expects headers as a plain record for symmetry with * `CustomFetchResponse`). */ export declare function headersToRecord(headers: Headers): Record;