import { IEventSource } from './IEventSource'; import { IPayload } from './IPayload'; declare type StandardEnum = { [id: string]: T | string; [nu: number]: string; }; declare const bindSimulator: , TEvents extends StandardEnum, THeaders extends IPayload = any, TBody extends IPayload = any>(eventSource: TEventSources) => (event: keyof TEventSources, headers: THeaders, body: TBody) => Promise<{ status?: any; output?: any; raw?: any; nothing?: any; }>; export default bindSimulator;