import { URL_CONFIG_FEATURE } from './url.config.id'; import { UrlConfigState } from './url.config.state'; /** * Represents the {@link UrlConfigState | configuration} of the URLs to be used * when working with {@link https://developer.ibm.com/api/view/dx-prod:ibm-watson-content-hub:title-IBM_Watson_Content_Hub | WCH REST} services. */ export interface UrlConfigFeatureState { [URL_CONFIG_FEATURE]: UrlConfigState; } /** */ export declare const urlConfigFeatureReducer: { urlConfig: import("redux").Reducer; }; /** * Select the URL config feature * * @param aState - the feature state * @returns the URL configuration object */ export declare const selectUrlConfigFeature: import("rxjs").UnaryFunction, import("@acoustic-content-sdk/api").UrlConfig>;