interface IParams { rootDir: string; tempDir: string; configPath: string; projectType: string; isMpa: boolean; } interface IResult { routesPath: string; isConfigRoutes: boolean; } declare function getRoutes({ rootDir, tempDir, configPath, projectType, isMpa }: IParams): IResult; export default getRoutes;