/// <reference types="node" />
type HeadersRecord = Record<string, string | string[]>;
export type HeadersLike = Iterable<[string, string]> | HeadersRecord | Required<RequestInit>["headers"];
export declare const toTupleArray: (headers: HeadersLike) => [string, string][];
export {};
