import { PostHogConfig } from "posthog-js"; type PostHogConfigOptions = Omit; export type PostHogInitConfig = Partial & { api_host: string; }; export type VitePostHogOptionsConfig = Partial; export type VitePostHogOptions = { apiKey: string; hostUrl: string; isCheckingForDevMode?: boolean; config?: VitePostHogOptionsConfig; }; export {};