// Copyright 2017 - 2026 will Farrell, Luciano Mammino, and Middy contributors. // SPDX-License-Identifier: MIT import type middy from "@middy/core"; export interface Options { canonical?: boolean; defaultHeaders?: Record; normalizeHeaderKey?: (key: string, canonical: boolean) => string; } declare function httpHeaderNormalizer( options?: Options, ): middy.MiddlewareObj; export default httpHeaderNormalizer;