/**
 * 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 { EventLogEntry } from './EventLogEntry';
import type { APIStatus } from './APIStatus';
/**
 *
 * @export
 * @interface GetEventLogResponse
 */
export interface GetEventLogResponse {
    /**
     *
     * @type {Array<EventLogEntry>}
     * @memberof GetEventLogResponse
     */
    events: Array<EventLogEntry>;
    /**
     *
     * @type {APIStatus}
     * @memberof GetEventLogResponse
     */
    status: APIStatus;
}
/**
 * Check if a given object implements the GetEventLogResponse interface.
 */
export declare function instanceOfGetEventLogResponse(value: object): value is GetEventLogResponse;
export declare function GetEventLogResponseFromJSON(json: any): GetEventLogResponse;
export declare function GetEventLogResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetEventLogResponse;
export declare function GetEventLogResponseToJSON(json: any): GetEventLogResponse;
export declare function GetEventLogResponseToJSONTyped(value?: GetEventLogResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetEventLogResponse.d.ts.map