import { SeedTools, Seeder } from '../../seed/services/seed.service'; import { LocationsTypeMapperService } from './locations-type-mapper.service'; import { LocationsService } from './locations.service'; export declare class WeatherSeederService implements Seeder { private readonly locationsService; private readonly locationsMapperService; private readonly seedTools; private readonly logger; constructor(locationsService: LocationsService, locationsMapperService: LocationsTypeMapperService, seedTools: SeedTools); seed(): Promise; }