import { AbstractTimeBasedBaseEntity } from '../../base'; import { InteractionFollowType } from './enum-values'; import { UserProfile } from '../auth/user.entities'; export declare class UserFollow extends AbstractTimeBasedBaseEntity { constructor(); type: InteractionFollowType; following: string; followerId?: string; follower: UserProfile; }