import { CompassConfig } from './compass.js'; import { ApiConfig } from './types.js'; import '@eventcatalog/sdk'; declare function resolveValue(value: string): string; type TeamData = { id: string; displayName: string; description?: string; largeAvatarImageUrl?: string; members?: Array<{ accountId: string; name: string; picture?: string; }>; }; declare function fetchTeamById(config: Pick, teamId: string): Promise; declare function fetchScorecardNames(config: Pick): Promise>; declare function fetchComponents(config: ApiConfig, scorecardNames?: Map): Promise; declare function updateComponentOwner(config: Pick, componentId: string, ownerAri: string): Promise; export { type TeamData, fetchComponents, fetchScorecardNames, fetchTeamById, resolveValue, updateComponentOwner };