/**
 * 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 { APIBanUserChangedValues } from './APIBanUserChangedValues';
import type { APIBannedUser } from './APIBannedUser';
/**
 *
 * @export
 * @interface APIBanUserChangeLog
 */
export interface APIBanUserChangeLog {
    /**
     *
     * @type {string}
     * @memberof APIBanUserChangeLog
     */
    createdBannedUserId?: string;
    /**
     *
     * @type {string}
     * @memberof APIBanUserChangeLog
     */
    updatedBannedUserId?: string;
    /**
     *
     * @type {Array<APIBannedUser>}
     * @memberof APIBanUserChangeLog
     */
    deletedBannedUsers?: Array<APIBannedUser>;
    /**
     *
     * @type {APIBanUserChangedValues}
     * @memberof APIBanUserChangeLog
     */
    changedValuesBefore?: APIBanUserChangedValues;
}
/**
 * Check if a given object implements the APIBanUserChangeLog interface.
 */
export declare function instanceOfAPIBanUserChangeLog(value: object): value is APIBanUserChangeLog;
export declare function APIBanUserChangeLogFromJSON(json: any): APIBanUserChangeLog;
export declare function APIBanUserChangeLogFromJSONTyped(json: any, ignoreDiscriminator: boolean): APIBanUserChangeLog;
export declare function APIBanUserChangeLogToJSON(json: any): APIBanUserChangeLog;
export declare function APIBanUserChangeLogToJSONTyped(value?: APIBanUserChangeLog | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=APIBanUserChangeLog.d.ts.map