import type { SimpleContext as SimpleContextType } from '../lib/types.mjs'; type SimpleContext = { ctx: SimpleContextType; }; /** * Simplified context middleware for internal service-to-service calls. * * Requirements: * - x-correlation-id: Required UUID (for distributed tracing) * - x-role: Required string (role of the user making the request, passed from calling service) * - x-user-id: Required UUID (user making the request, passed from calling service) * */ export declare const simpleContext: import("hono").MiddlewareHandler<{ Variables: SimpleContext; }, string, {}>; export {};