export interface IngestParams { accountId: string; type: "pageview" | "click" | "scroll" | "dwell"; sessionId: string; visitorId: string; /** optional Person elementId — overrides identity resolution */ personId?: string | null; url: string; path?: string; title?: string; pageViewId?: string; site?: string; referrer?: string; label?: string; href?: string; depth?: number; dwellMs?: number; occurredAt?: string; } export interface IngestResult { ok: boolean; type: string; sessionId: string; } export declare function visitorEventIngest(p: IngestParams): Promise; //# sourceMappingURL=visitor-event-ingest.d.ts.map