import { Request, Response, NextFunction } from 'express';

declare function createRoutes(mockPath: string): (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;

export { createRoutes };
