import { type BackgroundTaskStatus } from "./backgroundTaskStatus"; import { type BackgroundTaskType } from "./backgroundTaskType"; export interface AggregateEventTypesOut { id: string; status: BackgroundTaskStatus; task: BackgroundTaskType; updatedAt: Date; } export declare const AggregateEventTypesOutSerializer: { _fromJsonObject(object: any): AggregateEventTypesOut; _toJsonObject(self: AggregateEventTypesOut): any; };