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