/** * Get the cache path from user preferences if set. * Falls back to the default cache path `~/.cloudpack`. * * NOTE: If a session object is available, you should use `session.cachePath` instead. * * @param overridePath If set, this path (probably from a CLI option) will be used instead * of the path from preferences. * @returns An absolute path to the cache directory. Relative paths are resolved against cwd. */ export declare function getCachePath(overridePath?: string): Promise; /** * Gets the path to the app's local cache directory. */ export declare function getLocalCachePath(appPath: string): string; //# sourceMappingURL=getCachePath.d.ts.map