import type { Logger } from "../create-logger.ts";
export type MiddlewareOptions = {
    timeout?: number;
    path?: string;
    log?: Logger;
};
