import { type MessageAttemptLog } from "./messageAttemptLog";
export interface MessageAttemptLogEvent {
data: MessageAttemptLog[];
type: string;
}
export declare const MessageAttemptLogEventSerializer: {
_fromJsonObject(object: any): MessageAttemptLogEvent;
_toJsonObject(self: MessageAttemptLogEvent): any;
};