import type { Webhooks } from "../../index.ts";
import type { MiddlewareOptions } from "../types.ts";
export declare function createWebMiddleware(webhooks: Webhooks, { path, log, timeout, }?: MiddlewareOptions): (request: any, response?: any, next?: Function) => Promise<any>;
