import type { VKBridge } from './types/bridge.ts'; import type { Middleware } from './types/middleware.ts'; /** * Creates the VK Bridge enhancer that applies middleware to the `send` * method. This is handy for a variety of task such as logging every sent * event. * * @param middlewares The middleware chain to be applied. * @returns The VK Bridge enhancer applying the middleware. */ export declare function applyMiddleware(...middlewares: Array): (bridge: VKBridge) => VKBridge; //# sourceMappingURL=applyMiddleware.d.ts.map