declare const _currDir: string; declare const pathResolver: (p: string) => string; declare function findDirectory(rootDir: string, relativePaths: string[]): string; declare function checkIfInitialized(cwd: string): Promise; declare function getComponentsPath(cwd: string): Promise; declare function getEntryPathAndComponentsPath(): { entryPath: string[]; }; declare function getFilePath(files: string[]): Promise; declare function generateMonoRepoConfig(): Promise; export { checkIfInitialized, getEntryPathAndComponentsPath, getFilePath, getComponentsPath, generateMonoRepoConfig, findDirectory, pathResolver, _currDir, };