export declare enum ParentType { CIRCLE = "CIRCLE", POST = "POST" } export declare enum Priority { STANDARD = "STANDARD", ANNOUNCEMENT = "ANNOUNCEMENT" } export declare enum AttachmentType { VIDEO = "VIDEO", IMAGE = "IMAGE", EVENT = "EVENT", PDF = "PDF" } export type Post = { __typename: string; authorId?: string; author?: { profile: { displayName: string; picture: string; }; }; id: string; parentId: string; priority?: Priority; replyCount: number; createdAt: string; deletedAt?: string; status: string; message?: string; attachmentsV2?: { edges: { node: { externalId: string; type: AttachmentType; url: string; }; }[]; }; reactionTotals: { type: string; url?: string; count: number; userHasReacted?: boolean; }[]; metadata?: unknown; replies: { edges: { node: Post; }[]; pageInfo: { endCursor?: string; hasNextPage?: boolean; }; }; }; export declare const postDetailsFragment: string;