import { SDKUtils } from "../../models/common"; import { fullTextSearchResponse, Narrow } from "../../models/fullTextSearch"; export declare const emptyResults: (self: SDKUtils, slug: string) => void; export declare const getRecentSearchProducts: (self: SDKUtils) => string | undefined; export declare const setRecentSearchProducts: (self: SDKUtils, id: string) => void; export declare const isRecentSearchProduct: (id: string, self: SDKUtils) => boolean; export declare const facetNeeded: ({ self, newNarrow, newQuery, newPage }: { self: SDKUtils; newQuery: string; newNarrow?: Narrow[]; newPage: number; }) => boolean; export declare const reformatNarrow: (narrow: [string, string, string][]) => Narrow[]; export declare const setData: (self: SDKUtils, response: fullTextSearchResponse) => void;