import { UserProfilePhoto } from '@airgram-dev/core'; /** Contains part of the list of user photos */ export declare class UserProfilePhotosBaseModel { _: 'userProfilePhotos'; /** Total number of user profile photos */ totalCount: number; /** A list of photos */ photos: UserProfilePhoto[]; }