import type { GetSearchSuggestionsQuery } from '@farfetch/blackout-client'; /** * Creates a hash based on the search suggestions query. * * @param params - The params needed to create a hash. * * @returns The hash created. */ declare const generateSearchSuggestionsHash: ({ query, gender, ignoreFilterExclusions, }: GetSearchSuggestionsQuery) => string; export default generateSearchSuggestionsHash;