export declare class PostModel { _id?: any; uuid: string; revision: string; status: string; vrsn: string; create_date: Date; update_date: Date; poster_property: PosterProperty; post_id: string; reaction_summary: ReactionSummary; task_guid: string; channel_id: string; comments?: number; object_type?: string; post_message?: string; agent_participants?: string; created_by?: string; updated_by?: string; active_session?: string; page_id?: string; channel: string; constructor(pageId: string); } export declare class PosterProperty { id: string; name: string; } export declare class ReactionSummary { like: number; love: number; haha: number; sad: number; wow: number; angry: number; care: number; }