/**
 * 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';
/**
 *
 * @export
 * @interface CreateFeedPostResponse
 */
export interface CreateFeedPostResponse {
    /**
     *
     * @type {APIStatus}
     * @memberof CreateFeedPostResponse
     */
    status: APIStatus;
    /**
     *
     * @type {FeedPost}
     * @memberof CreateFeedPostResponse
     */
    feedPost: FeedPost;
}
/**
 * Check if a given object implements the CreateFeedPostResponse interface.
 */
export declare function instanceOfCreateFeedPostResponse(value: object): value is CreateFeedPostResponse;
export declare function CreateFeedPostResponseFromJSON(json: any): CreateFeedPostResponse;
export declare function CreateFeedPostResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateFeedPostResponse;
export declare function CreateFeedPostResponseToJSON(json: any): CreateFeedPostResponse;
export declare function CreateFeedPostResponseToJSONTyped(value?: CreateFeedPostResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=CreateFeedPostResponse.d.ts.map