import type { GetProductGroupingProperties } from './types/index.js'; /** * Method responsible for loading the grouping properties for a specific product. * * @param id - Product identifier. * @param query - Query parameters to apply to the request. * @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 getProductGroupingProperties: GetProductGroupingProperties; export default getProductGroupingProperties;