import type { GetProductSizeGuides } from './types/index.js'; /** * Method responsible for loading the sizeguides for a specific product id. This * sizeguides logic should be used where the project has a category tree. If your * project does not have a category tree you should use the sizeguides logic from * \@farfetch/blackout-redux/sizeGuides. * * @param id - Product id to search for sizeguides. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise that will be resolved when the call to the endpoint finishes. */ declare const getProductSizeGuides: GetProductSizeGuides; export default getProductSizeGuides;