import { NestFastifyApplication } from "@nestjs/platform-fastify"; /** * Routes that require raw body access for signature verification. * Raw body capture is memory-intensive, so we only enable it for specific routes. */ export declare const RAW_BODY_ROUTES: string[]; /** * Configure raw body capture for specific routes using preParsing hook. * This must be called BEFORE routes are registered. * * @param app - The NestFastify application instance */ export declare function setupRawBodyCapture(app: NestFastifyApplication): Promise; //# sourceMappingURL=raw-body.config.d.ts.map