import { AttendanceService } from './attendances.service';
import { TenantConnectionManager } from '../tenant/tenant-connection.manager';
import { ClsService } from 'nestjs-cls';
export declare class AttendanceCron {
    private readonly attendanceService;
    private readonly tenantConnectionManager;
    private readonly cls;
    constructor(attendanceService: AttendanceService, tenantConnectionManager: TenantConnectionManager, cls: ClsService);
    handleCron(): Promise<void>;
}
