import { IModel } from "../hub-types"; type FeedFormat = "dcat-us" | "dcat-ap" | "rss"; /** * DEPRECATED: Use `getFeedTemplate()` instead * this can be deleted once we remove the feed editor from the content-library (Ember addon) * Returns feed configuration from a site model * * @param {IModel} site - site model * @param {FeedFormat} format - feed format * @param {string} version - semantic version */ export declare function getFeedConfiguration(site: IModel, format: FeedFormat, version: string): any; /** * DEPRECATED: This will be removed in the next breaking version. Use `setFeedTemplate()` instead; * Returns feed configuration from a site model * * @param {IModel} site - site model * @param {FeedFormat} format - feed format * @param {string} version - semantic version * @param {Record} feedConfig - feed configuration */ export declare function setFeedConfiguration(site: IModel, format: FeedFormat, version: string, feedConfig: Record): void; export {};