//#region src/collections/CaseInsensitiveMap.d.ts
declare class CaseInsensitiveMap<T, U> extends Map<T, U> {
  constructor(values?: Iterable<[T, U]>);
  set(key: T, value: U): this;
  get(key: T): U | undefined;
  has(key: T): boolean;
}
//#endregion
export { CaseInsensitiveMap };
//# sourceMappingURL=CaseInsensitiveMap.d.cts.map