declare const getUserDataDir: () => string; /** * Get the filesystem path of the currently loaded app. * * @returns {string|undefined} Absolute path of current app. */ declare const getAppDir: () => string; /** * Get the filesystem path of a file for the currently loaded app. * * @param {string} filename relative name of file in the app directory * @returns {string|undefined} Absolute path of file. */ declare const getAppFile: (filename: string) => string; /** * Get the filesystem path of the data directory of currently loaded app. * * @returns {string|undefined} Absolute path of data directory of the current app. */ declare const getAppDataDir: () => string; /** * Get the filesystem path of the log directory of currently loaded app. * * @returns {string|undefined} Absolute path of data directory of the current app. */ declare const getAppLogDir: () => string; export { getAppDir, getAppFile, getAppDataDir, getAppLogDir, getUserDataDir }; //# sourceMappingURL=appDirs.d.ts.map