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