export interface HistorySync {
    id: number;
    sync_id: string;
    tenantId: string;
    agentId: string;
    sync_type: string;
    progress: number | null;
    timestamp: number;
    is_processed: boolean;
    data: any;
    created_at: Date;
}
export interface CreateHistorySyncDTO {
    sync_id: string;
    tenantId: string;
    agentId: number;
    sync_type: string;
    progress?: number;
    timestamp: number;
    is_processed?: boolean;
    data?: any;
}
export interface UpdateHistorySyncDTO {
    progress?: number;
    is_processed?: boolean;
    data?: any;
}
//# sourceMappingURL=IHistory.d.ts.map