import type { GetProductFittings } from './types/index.js'; /** * Method responsible for getting a product fittings information. * * @param id - Product ID we want to know the fittings information. * @param id - * @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 getProductFittings: GetProductFittings; export default getProductFittings;