import type { Brand, SizeGuide } from '@farfetch/blackout-client'; import type { CategoryEntity } from '../entities/index.js'; type FindSpecificSizeGuideParams = { sizeGuides?: SizeGuide[]; categories: Array; brandId?: Brand['id']; }; /** * Among the size guides received, find the most specific/accurate to the given * categories and brand. * * @param params - Parameters to find the specific size guide. * * @returns - The most specific size guide or undefined if there are no size guides. */ export declare const findSpecificSizeGuide: ({ sizeGuides, categories, brandId, }: FindSpecificSizeGuideParams) => SizeGuide | undefined; export {};