import { BaseTenantService } from '@/common/base/service/base-crud.service';
import { UserWorkSchedule } from '../entities/user-work-schedule.entity';
import { TenantConnectionService } from '@/modules/tenant/tenant-connection.service';
import { BulkUserWorkScheduleDto } from '../dto/schedules/bulk.user.work.schedule.dto';
export declare class UserWorkSchedulesService extends BaseTenantService<UserWorkSchedule> {
    protected tenantConnectionService: TenantConnectionService;
    protected entity: typeof UserWorkSchedule;
    constructor(tenantConnectionService: TenantConnectionService);
    bulkAssign(dto: BulkUserWorkScheduleDto): Promise<import("typeorm").InsertResult>;
}
