import { Result } from '../../../utils/src/index.ts'; import { DomainSeederConfig } from './shared-seeder-types.js'; export declare class ScenarioSeeder { private scenarioName; private config; private crisisMode; private multiTenancy; private sagaWorkflow; constructor(scenarioName: string, config: DomainSeederConfig); withCrisisMode(enabled: boolean): this; withMultiTenancy(enabled: boolean): this; withSagaWorkflow(enabled: boolean): this; withBaseline(baseline: string): this; injectCrisis(config: any): this; withEmergencyResponse(config: any): this; seed(): Promise>; }