import { RawPostData, RawPostWithSomeDetails, RawSpaceData, AnyPostId, AnySpaceId, AnyAccountId } from '../types'; import { PostDetailsOpts } from '../filters'; export declare type FindStructsFns = { findPosts: (ids: AnyPostId[]) => Promise; findSpaces: (ids: AnySpaceId[]) => Promise; findProfileSpaces: (ids: AnyAccountId[]) => Promise; }; /** @deprecated Load post structs and related structs like owner profile, space, root post if required. */ export declare function loadAndSetPostRelatedStructs(posts: RawPostData[], finders: FindStructsFns, opts?: PostDetailsOpts): Promise;