export declare class NotificationLog {
    readonly id: string;
    readonly responseCode: number;
    readonly responseContentType: string | null;
    readonly responseBody: string;
    readonly attemptedAt: string;
    constructor(notificationLogResponse: any);
}
