import { SearchArea } from "vviinn-tracking-client-ts"; import { BasicEventData } from "../recommendation/events"; import { SearchStoreName } from "../store/search.store"; type ImageSearchTracking = { searchArea: SearchArea; storeName: SearchStoreName; token: string; apiPath?: string; basicEventData: BasicEventData; }; /** * Report a visual search. Call it where the search is triggered — the same call serves the * widget and the standalone components, which have no widget to report on their behalf. * * Also rearms the result load and view events: a new search means a new result to report. */ export declare const trackImageSearch: ({ searchArea, storeName, token, apiPath, basicEventData, }: ImageSearchTracking) => void; export {};