/** * @license * Copyright 2025 OSA * SPDX-License-Identifier: Apache-2.0 */ export declare class UserAccountManager { private getOSAgentAccountsCachePath; /** * Parses and validates the string content of an accounts file. * @param content The raw string content from the file. * @returns A valid UserAccounts object. */ private parseAndValidateAccounts; private readAccountsSync; private readAccounts; cacheOSAgentAccount(email: string): Promise; getCachedOSAgentAccount(): string | null; getLifetimeOSAgentAccounts(): number; clearCachedOSAgentAccount(): Promise; }