/**
 * 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 { APIAuditLog } from './APIAuditLog';
import type { APIStatus } from './APIStatus';
/**
 *
 * @export
 * @interface GetAuditLogsResponse
 */
export interface GetAuditLogsResponse {
    /**
     *
     * @type {APIStatus}
     * @memberof GetAuditLogsResponse
     */
    status: APIStatus;
    /**
     *
     * @type {Array<APIAuditLog>}
     * @memberof GetAuditLogsResponse
     */
    auditLogs: Array<APIAuditLog>;
}
/**
 * Check if a given object implements the GetAuditLogsResponse interface.
 */
export declare function instanceOfGetAuditLogsResponse(value: object): value is GetAuditLogsResponse;
export declare function GetAuditLogsResponseFromJSON(json: any): GetAuditLogsResponse;
export declare function GetAuditLogsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAuditLogsResponse;
export declare function GetAuditLogsResponseToJSON(json: any): GetAuditLogsResponse;
export declare function GetAuditLogsResponseToJSONTyped(value?: GetAuditLogsResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetAuditLogsResponse.d.ts.map