import { Repository } from 'typeorm'; import { CrudService } from '../core/crud/crud.service'; import { Country } from './country.entity'; export declare class CountryService extends CrudService { private readonly countryRepository; constructor(countryRepository: Repository); }