import { IConfigLoader } from '..'; export interface IHTTPConfigLoaderOptions { url: string; method: string; body?: object; headers?: object; json?: boolean; } /** * Load application configuration over an HTTP config API * @param configOptions Request options to load config over http * @returns Config Loader module * @example */ export declare function httpConfigLoader(configOptions: IHTTPConfigLoaderOptions): IConfigLoader;