import { GenericAwsEventHandlerFunction } from './generic-aws-event-handler-function.js';
import { SQSEvent } from 'aws-lambda';
export interface SqsConfig {
    handlers: Map<string, GenericAwsEventHandlerFunction<SQSEvent>>;
}
