import { BaseTenantService } from '@/common/base/service/base-crud.service';
import { AttendanceImportBatch } from '../entities/attendance-import-batches.entity';
import { TenantConnectionService } from '@/modules/tenant/tenant-connection.service';
import { Queue } from 'bullmq';
export declare class AttendanceImportConfirmService extends BaseTenantService<AttendanceImportBatch> {
    protected tenantConnectionService: TenantConnectionService;
    private readonly queue;
    protected entity: typeof AttendanceImportBatch;
    constructor(tenantConnectionService: TenantConnectionService, queue: Queue);
    confirm(batchId: string, userId: number, tenant: string): Promise<{
        message: string;
    }>;
}
