import { EnumPostActions } from '~/postRepository/observers/enums';
import { QueryStreamController } from '~/core/liveCollection/QueryStreamController';
export declare class UserFeedQueryStreamController extends QueryStreamController<Amity.PostPayload, Amity.UserFeedLiveCollection> {
    private notifyChange;
    private preparePayload;
    private validatedUntilAt;
    private boundaryReached;
    constructor(query: Amity.UserFeedLiveCollection, cacheKey: string[], notifyChange: (params: Amity.LiveCollectionNotifyParams) => void, preparePayload: (response: Amity.PostPayload) => Amity.ProcessedPostPayload);
    saveToMainDB(response: Amity.PostPayload): Promise<void>;
    appendToQueryStream(response: Amity.PostPayload & Partial<Amity.Pagination>, direction: Amity.LiveCollectionPageDirection, refresh?: boolean): void;
    reactor(action: EnumPostActions): (post: Amity.InternalPost) => void;
    subscribeRTE(createSubscriber: {
        fn: (reactor: (post: Amity.InternalPost) => void) => Amity.Unsubscriber;
        action: EnumPostActions;
    }[]): Amity.Unsubscriber[];
    hasBoundaryReached(): boolean;
}
//# sourceMappingURL=QueryStreamController.d.ts.map