import { AppEventJsonValue, AppEventOccurrenceType, PublicCommandPayload } from '@getuserfeedback/protocol'; import { TrackOptions } from '@getuserfeedback/protocol/host'; type EventProperties = Record; type EventOptions = TrackOptions; type CustomerOccurrenceCommand = Extract; declare const buildCustomerOccurrenceCommand: (input: { type: AppEventOccurrenceType; event: string; properties?: EventProperties; options?: EventOptions; }) => CustomerOccurrenceCommand; export { buildCustomerOccurrenceCommand }; export type { EventOptions, EventProperties };