import { CoreEmitterContract, Emitter } from '@customerio/cdp-analytics-core'; import { Context } from './context'; import type { AnalyticsSettings } from './settings'; import { CustomerioEvent } from './types'; /** * Map of emitter event names to method args. */ export type NodeEmitterEvents = CoreEmitterContract & { initialize: [AnalyticsSettings]; call_after_close: [CustomerioEvent]; http_request: [ { url: string; method: string; headers: Record; body: string; } ]; drained: []; }; export declare class NodeEmitter extends Emitter { } //# sourceMappingURL=emitter.d.ts.map