import { Request, Response, NextFunction } from 'express';
import { EventBatcher } from '../event-batcher';
import { ClientConfig } from '../types';
export declare function createExpressMiddleware(eventBatcher: EventBatcher, clientConfig: ClientConfig): (req: Request, res: Response, next: NextFunction) => void;
