import type { AccountType, UserProfileData } from './types'; /** * 获取 CDN 资源 URL */ export declare function getAssetsUrl(path: string): string; export type UserProfileServiceConfig = { getAppId?: () => string | null | undefined; userProfileUrl?: (appId: string) => string; }; export declare class UserProfileService { private config; constructor(config?: UserProfileServiceConfig); getUserProfile(userId: string, accountType?: AccountType, signal?: AbortSignal): Promise; }