/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ export declare const QWEN_DIR = ".eadp"; export declare const GOOGLE_ACCOUNTS_FILENAME = "google_accounts.json"; export declare const OAUTH_FILE = "oauth_creds.json"; export declare class Storage { private readonly targetDir; constructor(targetDir: string); static getGlobalQwenDir(): string; static getMcpOAuthTokensPath(): string; static getGlobalSettingsPath(): string; static getInstallationIdPath(): string; static getGoogleAccountsPath(): string; static getUserCommandsDir(): string; static getGlobalMemoryFilePath(): string; static getGlobalTempDir(): string; static getGlobalIdeDir(): string; static getGlobalBinDir(): string; getQwenDir(): string; getProjectDir(): string; getProjectTempDir(): string; ensureProjectTempDirExists(): void; static getOAuthCredsPath(): string; getProjectRoot(): string; private getFilePathHash; getHistoryDir(): string; getWorkspaceSettingsPath(): string; getProjectCommandsDir(): string; getProjectTempCheckpointsDir(): string; getExtensionsDir(): string; getExtensionsConfigPath(): string; getUserSkillsDir(): string; getHistoryFilePath(): string; private sanitizeCwd; }