import type { GetProductVariantMerchantsLocations } from './types/index.js'; /** * Method responsible for fetching the merchants locations for a specific product * variant. * * @param id - Product identifier. * @param variantId - Variant identifier. * @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 getProductVariantMerchantsLocations: GetProductVariantMerchantsLocations; export default getProductVariantMerchantsLocations;