/**
 * ** Part of Features Config.
 *
 *      - Should be provided when Module is initialized and only once.
 */
export interface PlaceholderConfig {
    [PLACEHOLDER_FEATURE_KEY]: {
        /**
         * ** Url that will open portal, where service request should be created.
         */
        serviceRequestUrl: string;
    };
}
/**
 * ** Key for the feature in Shared Features config object.
 */
declare const PLACEHOLDER_FEATURE_KEY = "placeholder";
export {};
