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