import { GenericAwsEventHandlerFunction } from './generic-aws-event-handler-function.js';
import { S3Event } from 'aws-lambda';
export interface S3Config {
    createHandlers: Map<string, GenericAwsEventHandlerFunction<S3Event>>;
    removeHandlers: Map<string, GenericAwsEventHandlerFunction<S3Event>>;
}
