import { type OptionData } from '@atlaskit/user-picker'; import { type RecommendationRequest } from '../types'; import { type IntlShape } from 'react-intl'; export interface SUPError extends Error { message: string; statusCode: number; } declare const getUserRecommendations: (request: RecommendationRequest, intl: IntlShape) => Promise; export default getUserRecommendations;