import { type FireEventType } from '@atlaskit/teams-app-internal-analytics'; import type { ProfileClientOptions, Team } from '../types'; import CachingClient from './CachingClient'; export default class TeamProfileCardClient extends CachingClient { options: ProfileClientOptions; constructor(options: ProfileClientOptions); makeRequest(teamId: string, _orgId: string | undefined): Promise; getProfile(teamId: string, orgId: string | undefined, analytics?: FireEventType): Promise; }