import type { GetSearchDidYouMeanQuery } from '@farfetch/blackout-client'; /** * Creates a hash based on the search did you mean query. * * @param params - The params needed to create a hash. * * @returns The hash created. */ declare const generateSearchDidYouMeanHash: ({ searchTerms, genders, }: GetSearchDidYouMeanQuery) => string; export default generateSearchDidYouMeanHash;