import { Action } from './Action'; import { IPayload } from './IPayload'; import { Effect } from '../Effects'; declare type StandardEnum = { [id: string]: T | string; [nu: number]: string; }; export declare type IEventSource, THeaders extends IPayload = IPayload, TBody extends IPayload = IPayload> = { [key in keyof TEvents]: Action; }; export {};