import { NextRequest, NextResponse } from 'next/server'; import { EntityType } from '../../types/meta.types'; interface RouteContext { params: Promise<{ id: string; [key: string]: string; }>; } /** * Middleware que procesa meta datos en endpoints existentes */ export declare function withUnifiedMeta(entityType: EntityType): (handler: (req: NextRequest, context: RouteContext) => Promise) => (req: NextRequest, context: RouteContext) => Promise; export {}; //# sourceMappingURL=meta.middleware.d.ts.map