export interface SocialAccountResult {
    id: string;
    type: string;
    score: number;
    socialMetadata: {
        accountId: string;
        country: string;
        language: string;
        onlineId: string;
        isPsPlus: boolean;
        isOfficiallyVerified: boolean;
        avatarUrl: string;
        verifiedUserName: string;
        highlights: {
            onlineId: string[];
        };
    };
}
