import type { IConfig, IPicGo } from '../../../types'; declare class UserService { private readonly client; private readonly ctx; constructor(ctx: IPicGo); whoami(token: string): Promise<{ user: string; }>; verifyToken(token: string): Promise; getUserConfig(token: string): Promise; } export { UserService };