import type { GetProductOutfits } from './types/index.js'; /** * Method responsible for getting outfits photographed for the product, usually a single one. * * @param id - Product id to search for outfits. * @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 getProductOutfits: GetProductOutfits; export default getProductOutfits;