import { type OptionData } from '@atlaskit/user-picker'; import { type IntlShape } from 'react-intl-next'; import { EntityType } from '../types'; interface ServerItem { id: string; name?: string; entityType: EntityType; avatarUrl: string; description?: string; teamAri?: string; displayName?: string; title?: string; } interface ServerResponse { recommendedUsers: ServerItem[]; intl: IntlShape; } export declare const transformUsers: (serverResponse: ServerResponse, intl: IntlShape) => OptionData[]; export {};