import OreIdContext from '../../core/IOreidContext'; import { ConfigType } from '../../models'; export declare type ApiGetConfigParams = { configType: ConfigType.Chains; }; /** * Call api services/config to get configuration values of a specific type * Returns: for configType:Config.Chains, returns array of SettingChainNetwork objects for all chains suported by the service * */ export declare function callApiGetConfig(oreIdContext: OreIdContext, params: ApiGetConfigParams): Promise;