import { Team } from './entities/team.entity';
import { TenantConnectionService } from '../tenant/tenant-connection.service';
import { BaseTenantService } from '@/common/base/service/base-crud.service';
export declare class TeamService extends BaseTenantService<Team> {
    protected tenantConnectionService: TenantConnectionService;
    protected entity: typeof Team;
    constructor(tenantConnectionService: TenantConnectionService);
    bulkDelete(ids: (number | string)[]): Promise<{
        success: boolean;
        deletedCount: number;
        ids: (string | number)[];
    }>;
}
