import type { GetCategory } from './types/index.js'; /** * Method responsible for getting a category by its id. * * @param categoryId - Category 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 getCategory: GetCategory; export default getCategory;