import { type ISdk } from "./core"; export type MaybePromise = Promise | T; export type Maybe = NonNullable | undefined; export type MaybeArray = T | T[]; type HTMLResult = string | HTMLElement; export type RenderHTML = (sdk: ISdk, component?: any) => MaybePromise; export type AnalyticsOptions = { domains: string[]; trackingIds: string | string[]; selectedTrackingId: string | string[]; }; export type Analytics = AnalyticsOptions & { track?: (event: string, data: Record) => void; }; export {}; //# sourceMappingURL=types.d.ts.map