/** * @returns The file path of the authentication lock file. * Expected responses: * - Darwin: `/Users/user/.IdentityService/cloudpack.lockfile` * - Windows 8+: `C:\Users\user\AppData\Local\.IdentityService\cloudpack.lockfile` * - Linux: `/home/user/.IdentityService/cloudpack.lockfile` * * The lock file is generated by the @azure/identity and msal-node-extensions packages. Unfortunately, these packages do not provide an API to retrieve the lock file path directly. Therefore, we've implemented a function to obtain their lock file path, albeit without a formal contract. */ export declare function getAuthenticationLockFilePath(): string; /** * Local application data folder * Expected values: * - Darwin: `/Users/user/` * - Windows 8+: `C:\Users\user\AppData\Local` * - Linux: `/home/user/.local/share` */ export declare function getIdentityServiceCachePath(): string; //# sourceMappingURL=getAuthenticationLockFilePath.d.ts.map