import type { EventOptions, Events, GenericEvent } from "../types"; export type StandardLog = (data: StandardLogOpts) => (message: string) => string; export type StandardLogOpts = T & { redisMetadata: { transactionId: string; origin?: string; to?: string; eventTransactionId?: string; }; dispatcherConnectionState?: boolean; }; export declare function defaultStandardLog>(event: StandardLogOpts): (message: string) => string; //# sourceMappingURL=defaultStandardLog.d.ts.map