import type { ICloudManager, IPicGo } from '../../types'; import { UserService } from './services/UserService'; declare class CloudManager implements ICloudManager { private readonly ctx; private readonly auth; user: UserService; constructor(ctx: IPicGo); login(token?: string): Promise; logout(): void; disposeLoginFlow(): void; getUserInfo(): Promise<{ user: string; } | null>; } export { CloudManager };