export interface User { globalId: string; fullName: string; } export declare class UserService { private userMap; private store2; constructor({ store2 }: { store2: any; }); getUserNames(userIds: string[]): Promise>; }