import type { Event } from '../types'; export interface PostHogCaptureEvent { distinct_id: string; event: string; properties: Record; timestamp: string; type: 'capture'; } export interface BuildPostHogCaptureEventsOptions { /** Whether to emit a `$exception` sibling alongside errored events. Defaults to `true`. */ enableExceptionAutocapture?: boolean; } export declare function buildPostHogCaptureEvents(event: Event, options?: BuildPostHogCaptureEventsOptions): PostHogCaptureEvent[]; //# sourceMappingURL=posthog-events.d.ts.map