import { Entity } from '../../entity'; export declare class NineGagPost extends Entity { id: string; title: string; type: string; upVoteCount: number; downVoteCount: number; commentsCount: number; description?: string; nsfw?: number; imageUrl?: string; videoUrl?: string; thumbnailUrl?: string; squareIconUrl?: string; }