import { AutocompleteCallback, FastCategory, FastTurbolinks } from "../../models/autocomplete"; import { AutocompleteResults, SDKUtils } from "../../models/common"; export declare const emptyResults: (self: SDKUtils, query: string) => void; export declare const clientSuggestion: ({ self, query, withCategories }: { self: SDKUtils; query: string; withCategories?: boolean; }) => { turbolinks: FastTurbolinks[]; categories?: FastCategory[]; }; export declare const handleProducts: ({ callback, data, query, self, withAttributes, withProductTypes, withCategories, withProductVariants }: { callback: AutocompleteCallback; query: string; self: SDKUtils; data: AutocompleteResults; withAttributes?: boolean; withProductTypes?: boolean; withCategories?: boolean; withProductVariants?: boolean; }) => void; export declare const parseUrl: (url: string) => string;