import { IEventHandler, SqsService } from '@mbc-cqrs-serverless/core'; import { ConfigService } from '@nestjs/config'; import { ImportService } from '../import.service'; import { ImportEvent } from './import.event'; export declare class ImportEventHandler implements IEventHandler { private readonly sqsService; private readonly configService; private readonly importService; private readonly logger; constructor(sqsService: SqsService, configService: ConfigService, importService: ImportService); execute(event: ImportEvent): Promise; }