import { ServiceConfig } from 'handel-extension-api'; export interface SnsServiceConfig extends ServiceConfig { subscriptions?: SnsSubscription[]; } export interface SnsSubscription { endpoint: string; protocol: string; }