import { InputBag } from './input-bag.js'; export declare class RequestHeaderBag extends InputBag { /** * Returns the lowercased string value for the given `name`. */ private lowercase; /** * Returns the input value for the given `name`. Returns `undefined` * if the given `name` does not exist in the input bag. */ get(key: Key, defaultValue?: RequestHeaders[Key]): RequestHeaders[Key]; get(key: Key, defaultValue: RequestHeaders[Key]): NonNullable; /** * Set an input for the given `name` and assign the `value`. This * overrides a possibly existing input with the same `name`. */ set(key: Key | Partial, value?: any): this; /** * Removes the input with the given `name`. */ remove(key: Key): this; }