/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ export declare const LLXPRT_DIR = ".llxprt"; export declare const PROVIDER_ACCOUNTS_FILENAME = "provider_accounts.json"; export declare const OAUTH_FILE = "oauth_creds.json"; export declare class Storage { private readonly targetDir; constructor(targetDir: string); static getGlobalLlxprtDir(): string; static getMcpOAuthTokensPath(): string; static getGlobalSettingsPath(): string; static getInstallationIdPath(): string; static getProviderAccountsPath(): string; static getGoogleAccountsPath(): string; static getUserCommandsDir(): string; static getGlobalMemoryFilePath(): string; static getUserPoliciesDir(): string; static getSystemSettingsPath(): string; static getSystemPoliciesDir(): string; static getGlobalTempDir(): string; getLlxprtDir(): string; getProjectTempDir(): string; ensureProjectTempDirExists(): void; static getOAuthCredsPath(): string; getProjectRoot(): string; private getFilePathHash; getHistoryDir(): string; getWorkspaceSettingsPath(): string; getProjectCommandsDir(): string; getProjectTempCheckpointsDir(): string; getExtensionsDir(): string; getExtensionsConfigPath(): string; getHistoryFilePath(): string; }