/// import { Middleware } from '../../vision/types'; import { Route, RouterMethods } from './types'; export declare class ElixirRoute implements Route { protected readonly method: string; protected readonly path: string; protected readonly middleware: Middleware[]; constructor(method: RouterMethods, path: string, middleware: Middleware[]); getMethod: () => string; getPath: () => string; getMiddleware: () => Middleware[]; }