import { Job } from "../queue"; interface ExportAuditLogsPayload { reason?: string; } declare class ExportAuditLogsJob extends Job { readonly maxAttempts = 2; readonly backoffMs = 5000; handle(_payload?: ExportAuditLogsPayload): Promise; } export { ExportAuditLogsJob }; export default ExportAuditLogsJob; export type { ExportAuditLogsPayload };