export interface RouteInterface {
    /** Route name */
    readonly name: string;
    /** Get configuration of the current route */
    getConfiguration(): any;
}
