import { type User } from '@atlaskit/user-picker'; import { type AtlAttributionHeaderData } from './graphqlUtils'; interface UserData { accountId: string; name: string; picture: string; } export interface ApiClientResponse { users: UserData[]; } declare const getHydratedUsers: (baseUrl: string | undefined, userIds: string[], attributionData?: Partial) => Promise; export default getHydratedUsers;