import { IEventHandler, StepFunctionService } from '@mbc-cqrs-serverless/core'; import { ConfigService } from '@nestjs/config'; import { ImportService } from '../import.service'; import { IImportStrategy } from '../interface'; import { ImportQueueEvent } from './import.queue.event'; export declare class CsvImportQueueEventHandler implements IEventHandler { private readonly configService; private readonly sfnService; private readonly importService; private readonly importStrategyMap; private readonly logger; private readonly csvImportArn; constructor(configService: ConfigService, sfnService: StepFunctionService, importService: ImportService, importStrategyMap: Map>); execute(event: ImportQueueEvent): Promise; }