export default Requester;
/**
 * @class Requester
 * @classdesc Utility class to create and configure Axios instances dynamically.
 */
declare class Requester {
    /**
     * @static
     * @method bootstrap
     * @memberof CacheUtil
     * @description Creates a new Axios instance with custom configuration.
     *
     * @param {Object} config - Custom configuration for Axios.
     * @returns {AxiosInstance} A configured Axios instance.
     */
    static bootstrap(config: Object): AxiosInstance;
}
