/**
 * 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 { APIComment } from './APIComment';
import type { APIStatus } from './APIStatus';
import type { UserSessionInfo } from './UserSessionInfo';
/**
 *
 * @export
 * @interface APISaveCommentResponse
 */
export interface APISaveCommentResponse {
    /**
     *
     * @type {APIStatus}
     * @memberof APISaveCommentResponse
     */
    status: APIStatus;
    /**
     *
     * @type {APIComment}
     * @memberof APISaveCommentResponse
     */
    comment: APIComment;
    /**
     *
     * @type {UserSessionInfo}
     * @memberof APISaveCommentResponse
     */
    user: UserSessionInfo | null;
    /**
     * Construct a type with a set of properties K of type T
     * @type {{ [key: string]: any; }}
     * @memberof APISaveCommentResponse
     */
    moduleData?: {
        [key: string]: any;
    };
}
/**
 * Check if a given object implements the APISaveCommentResponse interface.
 */
export declare function instanceOfAPISaveCommentResponse(value: object): value is APISaveCommentResponse;
export declare function APISaveCommentResponseFromJSON(json: any): APISaveCommentResponse;
export declare function APISaveCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): APISaveCommentResponse;
export declare function APISaveCommentResponseToJSON(json: any): APISaveCommentResponse;
export declare function APISaveCommentResponseToJSONTyped(value?: APISaveCommentResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=APISaveCommentResponse.d.ts.map