import type { RunSagaFunction } from "../../store/index.mjs"; /** * Get a method that can be used to track an event. * * @param runSaga - A function to run a saga outside the usual Redux flow. * @returns A method that can be used to track an event. */ export declare function getTrackEventImplementation(runSaga: RunSagaFunction): (event: { event: string; properties?: Record | undefined; sensitiveProperties?: Record | undefined; }) => any; //# sourceMappingURL=track-event.d.mts.map