import type { GetProductAttributes } from './types/index.js'; /** * Method responsible for loading the product attributes for a specific product id. * * @param id - Product 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 getProductAttributes: GetProductAttributes; export default getProductAttributes;