import { IRouteTable } from '../interfaces';
export declare class RouteTable implements IRouteTable {
    private routes;
    add(route: string, httpVerb: string): void;
    getRoutes(): string[];
    static create(): RouteTable;
}
