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