export type GDpathConfig = { path: string; folderPath: string; }; export type GDpathConfigWithIndex = GDpathConfig & { generatedIndexPath: string; generatedFolderPath: string; folderPathRelative: string; }; export declare const greenDotCacheModuleFolder: string; export type AppConfigPaths = Array; export declare function getProjectPaths(resetCache?: boolean): Promise<{ /** Path of gd.config.ts */ mainConfig: GDpathConfig; /** Paths to all gd.app.config.ts that can be found in the project alongside their app names (folder name)*/ appConfigs: AppConfigPaths; /** Paths to all gd.app.config.ts that can be found in the project alongside their app names (folder name)*/ dbConfigs: GDpathConfigWithIndex[]; activeApp?: GDpathConfigWithIndex; activeDb?: GDpathConfigWithIndex; }>; export declare function findProjectPath(silent?: boolean): Promise<{ rootPath: string; mainConfigPath: string; exists: boolean; cwd: string; isSubFolder: boolean; }>; export declare function autoFindAndInitActiveAppAndDbPaths(path?: string): boolean;