import type { Context } from '../context.js'; export interface LoggerOptions { format?: (ctx: Context, ms: number) => string; json?: boolean; } export declare function logger(options?: LoggerOptions): (ctx: Context, next: () => Promise) => Promise; //# sourceMappingURL=logger.d.ts.map