import { IEventTranslator } from './i-event-translator.interface';
/**
 * Provides the necessary functionality to instantiate
 * translaters for a specific type of Lambda event.
 */
export interface IEventTranslatorFactory<TEvent> {
    /**
     * Creates a new event translator.
     */
    create(): IEventTranslator<TEvent>;
}
