import type { RecordWithObjectID } from './Recommend'; type BuiltInSendEventForHits = (eventType: string, hits: RecordWithObjectID | Array>, eventName?: string, additionalData?: Record) => void; type CustomSendEventForHits = (customPayload: any) => void; export type SendEventForHits = BuiltInSendEventForHits & CustomSendEventForHits; export {};