import { SendEventFunction } from "./createSendEventFunction"; import { DelayFunction } from "./types"; export declare const createTrackEventFunction: ({ sendEvent, delayFunction, getCommonEventInfos }: { sendEvent: SendEventFunction; delayFunction?: DelayFunction; getCommonEventInfos: () => Promise; }) => (inEvent: InEvent) => Promise;