import type { GetBrands } from './types/index.js'; /** * Method responsible for fetching all the brands or a specific set of brands, * according to the provided filters. * * @param query - Query with parameters to fetch brands. * @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 getBrands: GetBrands; export default getBrands;