import { Result } from '../../../utils/src/index.ts'; import { DomainSeederConfig } from './shared-seeder-types.js'; export declare class GeographicSeeder { private scenarioName; private config; constructor(scenarioName: string, config: DomainSeederConfig); withBoundaries(config: any): this; withUsers(config: any): this; withBusinesses(config: any): this; seed(): Promise>; }