export declare function logJobAction(jobId: string, action: string, errorMsg?: string): Promise; export declare function getLogs(date?: string, hour?: string): Promise<(import("mongoose").Document & import("../models/log").Log & { _id: import("mongoose").Types.ObjectId; })[]>; export declare function getJobStatus(date?: string, hour?: string): Promise<({ date: string; hour_range: string; status: "pending" | "success" | "failed"; retries: number; file_path: string; } | null)[]>;