import { IServiceConfig, IServiceEndPoint } from "../interface/IElmerService"; import { TypeServiceConfig } from "./TypeGlobalConfig"; export declare const getServiceConfig: () => TypeServiceConfig; export declare const setServiceConfig: (config: { [P in keyof T]: IServiceConfig; }) => void; export declare const defineServiceNamespace: (nameSpace: string, configData: IServiceConfig) => void; export declare const setServiceRequstConfig: (namespaceKey: string, key: string, configData: IServiceEndPoint) => void; export declare const setServiceNamespaceEndPoints: (namespaceKey: string, configData: T) => void;