import { ProfileEntity } from '../entities/profile.entity'; export interface BestiesFeedResponse { sections: null; users: BestiesFeedResponseUsersItem[]; big_list: boolean; next_max_id: null; page_size: number; status: string; } export declare class BestiesFeedResponseUsersItem extends ProfileEntity { pk: number; username: string; full_name: string; is_private: boolean; profile_pic_url: string; profile_pic_id?: string; is_verified: boolean; has_anonymous_profile_picture: boolean; latest_reel_media?: number; is_bestie: boolean; friendship_status: object; }