/**
 * fastcomments
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 0.0.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { FeedPost } from './FeedPost';
import type { APIStatus } from './APIStatus';
import type { UserSessionInfo } from './UserSessionInfo';
/**
 *
 * @export
 * @interface PublicFeedPostsResponse
 */
export interface PublicFeedPostsResponse {
    /**
     *
     * @type {APIStatus}
     * @memberof PublicFeedPostsResponse
     */
    status: APIStatus;
    /**
     *
     * @type {Array<FeedPost>}
     * @memberof PublicFeedPostsResponse
     */
    feedPosts: Array<FeedPost>;
    /**
     *
     * @type {UserSessionInfo}
     * @memberof PublicFeedPostsResponse
     */
    user?: UserSessionInfo | null;
    /**
     *
     * @type {string}
     * @memberof PublicFeedPostsResponse
     */
    urlIdWS?: string;
    /**
     *
     * @type {string}
     * @memberof PublicFeedPostsResponse
     */
    userIdWS?: string;
    /**
     *
     * @type {string}
     * @memberof PublicFeedPostsResponse
     */
    tenantIdWS?: string;
    /**
     *
     * @type {{ [key: string]: { [key: string]: boolean; }; }}
     * @memberof PublicFeedPostsResponse
     */
    myReacts?: {
        [key: string]: {
            [key: string]: boolean;
        };
    };
}
/**
 * Check if a given object implements the PublicFeedPostsResponse interface.
 */
export declare function instanceOfPublicFeedPostsResponse(value: object): value is PublicFeedPostsResponse;
export declare function PublicFeedPostsResponseFromJSON(json: any): PublicFeedPostsResponse;
export declare function PublicFeedPostsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PublicFeedPostsResponse;
export declare function PublicFeedPostsResponseToJSON(json: any): PublicFeedPostsResponse;
export declare function PublicFeedPostsResponseToJSONTyped(value?: PublicFeedPostsResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=PublicFeedPostsResponse.d.ts.map