import { Country } from "src/modules/country/entities/country.entity";
import { Repository } from "typeorm";
export declare class CountrySeedService {
    private readonly countryRepository;
    constructor(countryRepository: Repository<Country>);
    run(): Promise<void>;
}
