export function readJsonFile(filePath: any): Promise; export function getLayoutConfig(): Promise<{ layoutConfigFileData: any; layoutSettings: any; }>; export function getModulesRouteConfig({ modules }: { modules: any; }): Promise; export function generateAppRoutesJson({ appDirPath }: { appDirPath: any; }): Promise; export function generateModulesTsFile({ appDirPath, modules, initialRouteName }: { appDirPath: any; modules: any; initialRouteName: any; }): Promise; export function generateStackNavigations({ appDirPath, modules, initialRouteName, unauthenticatedComponentPath }: { appDirPath: any; modules: any; initialRouteName: any; unauthenticatedComponentPath: any; }): Promise; export function generateDrawerNavigations({ appDirPath, modules, initialRouteName, unauthenticatedComponentPath }: { appDirPath: any; modules: any; initialRouteName: any; unauthenticatedComponentPath: any; }): Promise; export function generateBottomTabNavigations({ appDirPath, modules, initialRouteName, unauthenticatedComponentPath }: { appDirPath: any; modules: any; initialRouteName: any; unauthenticatedComponentPath: any; }): Promise; export function generateAppNavigations({ appDirPath, modules, initialRouteName, unauthenticatedComponentPath, customTabBarPath, customDrawerPath, customHeaderPath }: { appDirPath: any; modules: any; initialRouteName?: string; unauthenticatedComponentPath?: any; customTabBarPath?: any; customDrawerPath?: any; customHeaderPath?: any; }): Promise; export { getReplacedRouteConfig };