import { SnsHandlerFunction } from './sns-handler-function';
export interface SnsConfig {
    handlers: Map<string, SnsHandlerFunction>;
}
