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