export interface RouteConfig { url: string; } export interface NavigationModule { goBack: () => Promise; navigate: (routeConfig: RouteConfig) => Promise; }