import { z } from 'zod/v4'; import type { Handler as HonoHandler } from 'hono'; import type { LogTags } from './logger.js'; export type LoggerHonoBindings = z.infer; export declare const LoggerHonoBindings: z.ZodObject<{ ENVIRONMENT: z.ZodOptional; }, z.core.$strip>; /** * Hono middleware to activate the WorkersLogger AsyncLocalStorage context * @param source Source of the logs (e.g. the name of the Worker) * @param tags Additional tags to add to all logs */ export declare function useWorkersLogger(source: string, tags?: Partial): HonoHandler; //# sourceMappingURL=hono.d.ts.map