export interface IngestEventInput { type: string; payload?: Record; ts?: string; } export declare function ingestSessionEvents(vibnApiUrl: string, projectId: string, sessionId: string, events: IngestEventInput[]): Promise;