import { Middleware } from '../interfaces/middleware.interface'; declare function Controller(path: string, ...middleware: Middleware[]): (target: any) => void; export { Controller };