import { AutocompleteProductsResponse, PopularSearchesResponse } from "../models/autocomplete"; import { Channel } from "../models/common"; export declare const debugVersion: string; export declare const Autocomplete: { getProducts: ({ cdn, storeID, uuid, query, withAttributes, hasShopifyMarkets, withProductVariants, withProductTypes, companyLocationContext, withCategories, channel }: { query: string; uuid: string; storeID: number; cdn: number; withAttributes?: boolean; hasShopifyMarkets?: boolean; withProductVariants?: boolean; withProductTypes?: boolean; companyLocationContext?: number; withCategories?: boolean; channel?: Channel; }) => Promise; getPopularSearches: ({ cdn, storeID, uuid, query, site, withCategories, channel }: { query: string; uuid: string; storeID: number; cdn: number; site: string; withCategories?: boolean; channel?: Channel; }) => Promise; };