import { normalizeMethod } from "./method/index.js";
import { normalizePath } from "./path/index.js";
import { normalizeStatusCode } from "./status-code/index.js";
declare const defaultNormalizers: {
    normalizeStatusCode: (statusCode: number) => number;
    normalizePath: (path: string) => string;
    normalizeMethod: (method: string) => string;
};
export { normalizeStatusCode, normalizePath, normalizeMethod, defaultNormalizers, };
