export interface RouteSwitcher { AOS6: { [key: string]: string; }; AOS7: { [key: string]: string; }; } declare class RouterProvider { private retrocompatibilityAOS6; private routes; constructor(); init(data: { retrocompatibility: boolean; routesDefinition: RouteSwitcher; }): void; enableRetrocompatibilityWithAOSv6(value: boolean): void; addRoutes(value: RouteSwitcher): void; get(resource: string): Promise; } declare const routerProvider: RouterProvider; export default routerProvider;