import { Repository } from 'typeorm';
import { Country } from '../entities/country.entity';
export declare class CountrySeed {
    private readonly countryRepo;
    constructor(countryRepo: Repository<Country>);
    seed(): Promise<void>;
}
