export {}; declare global { namespace Amity { type PinnedPostPayload = { pinTargets: Amity.RawPinTarget[]; pins: Amity.RawPin[]; posts: Amity.RawPost[]; postChildren: Amity.RawPost[]; comments: Amity.RawComment[]; videoStreamings: Amity.RawStream[]; polls: Amity.RawPoll[]; } & Amity.CommunityPayload; type PinnedPostLiveCollection = Amity.LiveCollectionParams<{ communityId: Amity.Community['communityId']; placement?: string | null; sortBy: 'lastPinned' | 'lastCreated'; includeMixedStructure?: boolean; }>; type PinnedPostLiveCollectionCache = Omit, 'params'>; type PinnedPost = Amity.RawPin & { post: Amity.Post | undefined; target: Amity.PinTarget | undefined; }; type GlobalPinnedPostLiveCollection = Amity.LiveCollectionParams<{ includeMixedStructure?: boolean; }>; } } //# sourceMappingURL=pinnedPost.d.ts.map