import { Request, Response } from 'express'; import ControllerBase from '../interfaces/ControllerBase'; import { UserService } from '../service/UserService'; export declare class UserController implements ControllerBase { path: string; router: import("express-serve-static-core").Router; userService: UserService; constructor(); initRoutes(): void; post: (req: Request, res: Response) => void; get: (req: Request, res: Response) => void; }