import type { GetBrandsQuery } from '@farfetch/blackout-client'; /** * Generate a hash with the query to identify brands results. * * @example * ``` * const brandsHash = generateBrandsHash({categoryId: '123'}); * Result of brandsHash === 'brands?categoryId=123'; * * ``` * * @param query - Query parameters applied to a brands request. * * @returns Hash built to identify a brands request. */ declare const generateBrandsHash: (query?: GetBrandsQuery) => string; export default generateBrandsHash;