import type { Express } from 'express-serve-static-core'; /** * Enable case sensitivity. When enabled, "/Foo" and "/foo" are different * routes. When disabled, "/Foo" and "/foo" are treated the same. * @param app The Express app to disable the header on. */ export declare const enableCaseSensitiveRouting: (app: Express) => void; /** * Disable case sensitivity. When enabled, "/Foo" and "/foo" are different * routes. When disabled, "/Foo" and "/foo" are treated the same. * @param app The Express app to disable the header on. */ export declare const disableCaseSensitiveRouting: (app: Express) => void; //# sourceMappingURL=caseInsensitiveRouting.d.ts.map