import type { GetConfigurations } from './types/index.js'; /** * Method responsible for fetching all the configurations for the giving criteria. * * @param query - Query with parameters to fetch configurations. * @param config - Custom configurations to send to the client instance (axios). * * @returns Promise that will resolve when the call to the endpoint finishes. */ declare const getConfigurations: GetConfigurations; export default getConfigurations;