type QueuedEvent = { event: string; properties?: Record; }; declare class PostHogClient { private installId; private client; private isEnabled; private eventQueue; constructor(config: { enabledAnalytics: boolean; installId: string; }); private flushQueue; capture(event: QueuedEvent): void; shutdown(): Promise; } export declare const posthog: PostHogClient; export {}; //# sourceMappingURL=posthog-client.d.mts.map