import { WidgetEvent } from "vviinn-tracking-client-ts"; import { ProductEvent, ResultEvent } from "../recommendation/events"; import { Locale } from "../locale"; type DefaultConfig = { locale: Locale; currencySign: string; apiPath: string; }; export declare const defaultConfig: DefaultConfig; export declare const trackEvent: (event: WidgetEvent | ProductEvent | ResultEvent, token: string, apiPath?: string) => Promise; export {};